From 96f3c52af5c91aa6a305f5b78a1a14a7f92caf20 Mon Sep 17 00:00:00 2001 From: Florian Eckerstorfer Date: Mon, 15 Feb 2016 12:51:01 -0500 Subject: [PATCH] Applied fixes from StyleCI --- src/Converter/CallbackConverter.php | 1 - src/Converter/ConverterInterface.php | 1 - src/Converter/FloatConverter.php | 1 - src/Converter/HeaderConverter.php | 1 - src/Converter/IntegerConverter.php | 1 - src/Converter/LogConverter.php | 1 - src/Converter/MappingConverter.php | 1 - src/Converter/NullConverter.php | 1 - src/Filter/CallbackFilter.php | 1 - src/Filter/FilterInterface.php | 1 - src/Filter/SkipFirstFilter.php | 1 - src/Pipe/AbstractPipe.php | 1 - src/Pipe/ConverterPipe.php | 1 - src/Pipe/FilterPipe.php | 1 - src/Pipe/WriterPipe.php | 1 - src/PipelineInterface.php | 1 - src/Reader/ArrayReader.php | 1 - src/Reader/ReaderInterface.php | 1 - src/Result.php | 1 - src/Workflow.php | 1 - src/WorkflowConcatenator.php | 1 - src/Writer/ArrayWriter.php | 1 - src/Writer/WriterInterface.php | 1 - tests/Converter/CallbackConverterTest.php | 1 - tests/Converter/FloatConverterTest.php | 1 - tests/Converter/HeaderConverterTest.php | 1 - tests/Converter/IntegerConverterTest.php | 1 - tests/Converter/LogConverterTest.php | 1 - tests/Converter/NullConverterTest.php | 1 - tests/Filter/CallbackFilterTest.php | 1 - tests/Filter/SkipFirstFilterTest.php | 1 - tests/Reader/ArrayReaderTest.php | 1 - tests/ResultTest.php | 1 - tests/WorkflowConcatenatorTest.php | 1 - tests/WorkflowTest.php | 1 - tests/Writer/ArrayWriterTest.php | 1 - 36 files changed, 36 deletions(-) diff --git a/src/Converter/CallbackConverter.php b/src/Converter/CallbackConverter.php index e26a176..c3be912 100644 --- a/src/Converter/CallbackConverter.php +++ b/src/Converter/CallbackConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/src/Converter/ConverterInterface.php b/src/Converter/ConverterInterface.php index 5ed1a0a..3ddbb30 100644 --- a/src/Converter/ConverterInterface.php +++ b/src/Converter/ConverterInterface.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; use Plum\Plum\PipelineInterface; diff --git a/src/Converter/FloatConverter.php b/src/Converter/FloatConverter.php index a92054b..0bbacad 100644 --- a/src/Converter/FloatConverter.php +++ b/src/Converter/FloatConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/src/Converter/HeaderConverter.php b/src/Converter/HeaderConverter.php index edc215f..a7c92c5 100644 --- a/src/Converter/HeaderConverter.php +++ b/src/Converter/HeaderConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/src/Converter/IntegerConverter.php b/src/Converter/IntegerConverter.php index 5a0fc29..7f7940f 100644 --- a/src/Converter/IntegerConverter.php +++ b/src/Converter/IntegerConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/src/Converter/LogConverter.php b/src/Converter/LogConverter.php index ff6faea..a8a88bc 100644 --- a/src/Converter/LogConverter.php +++ b/src/Converter/LogConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; use Psr\Log\LoggerInterface; diff --git a/src/Converter/MappingConverter.php b/src/Converter/MappingConverter.php index 4dc015a..2d6e23a 100644 --- a/src/Converter/MappingConverter.php +++ b/src/Converter/MappingConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; use Cocur\Vale\Vale; diff --git a/src/Converter/NullConverter.php b/src/Converter/NullConverter.php index 2add398..abb641b 100644 --- a/src/Converter/NullConverter.php +++ b/src/Converter/NullConverter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/src/Filter/CallbackFilter.php b/src/Filter/CallbackFilter.php index d59bd19..57bc97a 100644 --- a/src/Filter/CallbackFilter.php +++ b/src/Filter/CallbackFilter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Filter; /** diff --git a/src/Filter/FilterInterface.php b/src/Filter/FilterInterface.php index 95f650a..b51842a 100644 --- a/src/Filter/FilterInterface.php +++ b/src/Filter/FilterInterface.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Filter; use Plum\Plum\PipelineInterface; diff --git a/src/Filter/SkipFirstFilter.php b/src/Filter/SkipFirstFilter.php index 7df297c..276087a 100644 --- a/src/Filter/SkipFirstFilter.php +++ b/src/Filter/SkipFirstFilter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Filter; use LogicException; diff --git a/src/Pipe/AbstractPipe.php b/src/Pipe/AbstractPipe.php index fac3e9b..2f7f7ea 100644 --- a/src/Pipe/AbstractPipe.php +++ b/src/Pipe/AbstractPipe.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Pipe; use Plum\Plum\Converter\ConverterInterface; diff --git a/src/Pipe/ConverterPipe.php b/src/Pipe/ConverterPipe.php index 6c88dfb..b62fbba 100644 --- a/src/Pipe/ConverterPipe.php +++ b/src/Pipe/ConverterPipe.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Pipe; use InvalidArgumentException; diff --git a/src/Pipe/FilterPipe.php b/src/Pipe/FilterPipe.php index cfaa82a..ad03c5d 100644 --- a/src/Pipe/FilterPipe.php +++ b/src/Pipe/FilterPipe.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Pipe; use InvalidArgumentException; diff --git a/src/Pipe/WriterPipe.php b/src/Pipe/WriterPipe.php index 22b2eb8..0dddcb0 100644 --- a/src/Pipe/WriterPipe.php +++ b/src/Pipe/WriterPipe.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Pipe; use InvalidArgumentException; diff --git a/src/PipelineInterface.php b/src/PipelineInterface.php index c22242a..d7d91ca 100644 --- a/src/PipelineInterface.php +++ b/src/PipelineInterface.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; /** diff --git a/src/Reader/ArrayReader.php b/src/Reader/ArrayReader.php index f8bb75b..75c743b 100644 --- a/src/Reader/ArrayReader.php +++ b/src/Reader/ArrayReader.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Reader; use ArrayIterator; diff --git a/src/Reader/ReaderInterface.php b/src/Reader/ReaderInterface.php index 0d81327..9ccc39e 100644 --- a/src/Reader/ReaderInterface.php +++ b/src/Reader/ReaderInterface.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Reader; use IteratorAggregate; diff --git a/src/Result.php b/src/Result.php index e227526..1338afd 100644 --- a/src/Result.php +++ b/src/Result.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; /** diff --git a/src/Workflow.php b/src/Workflow.php index 48edee7..6a5c690 100644 --- a/src/Workflow.php +++ b/src/Workflow.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; use Cocur\Vale\Vale; diff --git a/src/WorkflowConcatenator.php b/src/WorkflowConcatenator.php index 99c5bd6..10a89d8 100644 --- a/src/WorkflowConcatenator.php +++ b/src/WorkflowConcatenator.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; use Plum\Plum\Reader\ReaderInterface; diff --git a/src/Writer/ArrayWriter.php b/src/Writer/ArrayWriter.php index 96deaf8..9459371 100644 --- a/src/Writer/ArrayWriter.php +++ b/src/Writer/ArrayWriter.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Writer; /** diff --git a/src/Writer/WriterInterface.php b/src/Writer/WriterInterface.php index e91b310..705953e 100644 --- a/src/Writer/WriterInterface.php +++ b/src/Writer/WriterInterface.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Writer; use Plum\Plum\PipelineInterface; diff --git a/tests/Converter/CallbackConverterTest.php b/tests/Converter/CallbackConverterTest.php index 18bdb17..4371939 100644 --- a/tests/Converter/CallbackConverterTest.php +++ b/tests/Converter/CallbackConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/tests/Converter/FloatConverterTest.php b/tests/Converter/FloatConverterTest.php index 95ef293..7aff69c 100644 --- a/tests/Converter/FloatConverterTest.php +++ b/tests/Converter/FloatConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/tests/Converter/HeaderConverterTest.php b/tests/Converter/HeaderConverterTest.php index 2fae9c0..f36f1a5 100644 --- a/tests/Converter/HeaderConverterTest.php +++ b/tests/Converter/HeaderConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/tests/Converter/IntegerConverterTest.php b/tests/Converter/IntegerConverterTest.php index d4b02a0..9666bd1 100644 --- a/tests/Converter/IntegerConverterTest.php +++ b/tests/Converter/IntegerConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/tests/Converter/LogConverterTest.php b/tests/Converter/LogConverterTest.php index a881666..6059e73 100644 --- a/tests/Converter/LogConverterTest.php +++ b/tests/Converter/LogConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; use Mockery as m; diff --git a/tests/Converter/NullConverterTest.php b/tests/Converter/NullConverterTest.php index bff3b21..432da8b 100644 --- a/tests/Converter/NullConverterTest.php +++ b/tests/Converter/NullConverterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Converter; /** diff --git a/tests/Filter/CallbackFilterTest.php b/tests/Filter/CallbackFilterTest.php index 57d370e..9d0450f 100644 --- a/tests/Filter/CallbackFilterTest.php +++ b/tests/Filter/CallbackFilterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Filter; /** diff --git a/tests/Filter/SkipFirstFilterTest.php b/tests/Filter/SkipFirstFilterTest.php index 1240561..4b9454d 100644 --- a/tests/Filter/SkipFirstFilterTest.php +++ b/tests/Filter/SkipFirstFilterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Filter; /** diff --git a/tests/Reader/ArrayReaderTest.php b/tests/Reader/ArrayReaderTest.php index 7c54363..ae757f3 100644 --- a/tests/Reader/ArrayReaderTest.php +++ b/tests/Reader/ArrayReaderTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Reader; /** diff --git a/tests/ResultTest.php b/tests/ResultTest.php index 6e1cb05..4993f2f 100644 --- a/tests/ResultTest.php +++ b/tests/ResultTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; use Exception; diff --git a/tests/WorkflowConcatenatorTest.php b/tests/WorkflowConcatenatorTest.php index 7ede07c..052572c 100644 --- a/tests/WorkflowConcatenatorTest.php +++ b/tests/WorkflowConcatenatorTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; /** diff --git a/tests/WorkflowTest.php b/tests/WorkflowTest.php index 3d22f73..a419c43 100644 --- a/tests/WorkflowTest.php +++ b/tests/WorkflowTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum; use Exception; diff --git a/tests/Writer/ArrayWriterTest.php b/tests/Writer/ArrayWriterTest.php index b718cc9..fe3f53b 100644 --- a/tests/Writer/ArrayWriterTest.php +++ b/tests/Writer/ArrayWriterTest.php @@ -8,7 +8,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace Plum\Plum\Writer; /**