Completed
Push — develop ( 7938f1...079ed4 )
by Jaap
04:59
created
src/phpDocumentor/Reflection/Php/Factory/Function_.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,11 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\Php\Factory;
14 14
 
15
-use InvalidArgumentException;
16
-use phpDocumentor\Reflection\Fqsen;
17 15
 use phpDocumentor\Reflection\Php\Factory;
18 16
 use phpDocumentor\Reflection\Php\Function_ as FunctionDescriptor;
19 17
 use phpDocumentor\Reflection\Php\ProjectFactoryStrategy;
20 18
 use phpDocumentor\Reflection\Php\StrategyContainer;
21 19
 use phpDocumentor\Reflection\Types\Context;
22
-use PhpParser\Comment\Doc;
23 20
 use PhpParser\Node\Stmt\Function_ as FunctionNode;
24 21
 
25 22
 /**
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * This file is part of phpDocumentor.
4
-     *
5
-     * For the full copyright and license information, please view the LICENSE
6
-     * file that was distributed with this source code.
7
-     *
8
-     * @copyright 2010-2015 Mike van Riel<[email protected]>
9
-     * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
-     * @link      http://phpdoc.org
11
-     */
3
+ * This file is part of phpDocumentor.
4
+ *
5
+ * For the full copyright and license information, please view the LICENSE
6
+ * file that was distributed with this source code.
7
+ *
8
+ * @copyright 2010-2015 Mike van Riel<[email protected]>
9
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
+ * @link      http://phpdoc.org
11
+ */
12 12
 
13 13
 namespace phpDocumentor\Reflection\Php\Factory;
14 14
 
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Interface_.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,11 @@
 block discarded – undo
12 12
 
13 13
 
14 14
 namespace phpDocumentor\Reflection\Php\Factory;
15
-use InvalidArgumentException;
16 15
 use phpDocumentor\Reflection\Element;
17 16
 use phpDocumentor\Reflection\Fqsen;
18 17
 use phpDocumentor\Reflection\Php\ProjectFactoryStrategy;
19 18
 use phpDocumentor\Reflection\Php\StrategyContainer;
20 19
 use phpDocumentor\Reflection\Types\Context;
21
-use PhpParser\Comment\Doc;
22
-use PhpParser\Node;
23 20
 use PhpParser\Node\Stmt\ClassConst;
24 21
 use PhpParser\Node\Stmt\ClassMethod;
25 22
 use PhpParser\Node\Stmt\Interface_ as InterfaceNode;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $docBlock = $this->createDocBlock($strategies, $object->getDocComment(), $context);
61 61
         $parents = array();
62 62
         foreach ($object->extends as $extend) {
63
-            $parents['\\' . (string)$extend] = new Fqsen('\\' . (string)$extend);
63
+            $parents['\\'.(string)$extend] = new Fqsen('\\'.(string)$extend);
64 64
         }
65 65
 
66 66
         $interface = new InterfaceElement($object->fqsen, $parents, $docBlock);
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Property.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,13 +12,11 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\Php\Factory;
14 14
 
15
-use InvalidArgumentException;
16 15
 use phpDocumentor\Reflection\Php\Method as MethodDescriptor;
17 16
 use phpDocumentor\Reflection\Php\ProjectFactoryStrategy;
18 17
 use phpDocumentor\Reflection\Php\StrategyContainer;
19 18
 use phpDocumentor\Reflection\Php\Visibility;
20 19
 use phpDocumentor\Reflection\Types\Context;
21
-use PhpParser\Comment\Doc;
22 20
 use PhpParser\Node\Stmt\ClassMethod;
23 21
 
24 22
 /**
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * This file is part of phpDocumentor.
4
-     *
5
-     * For the full copyright and license information, please view the LICENSE
6
-     * file that was distributed with this source code.
7
-     *
8
-     * @copyright 2010-2015 Mike van Riel<[email protected]>
9
-     * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
-     * @link      http://phpdoc.org
11
-     */
3
+ * This file is part of phpDocumentor.
4
+ *
5
+ * For the full copyright and license information, please view the LICENSE
6
+ * file that was distributed with this source code.
7
+ *
8
+ * @copyright 2010-2015 Mike van Riel<[email protected]>
9
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
+ * @link      http://phpdoc.org
11
+ */
12 12
 
13 13
 namespace phpDocumentor\Reflection\Php\Factory;
14 14
 
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Trait_.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -12,15 +12,11 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\Php\Factory;
14 14
 
15
-use InvalidArgumentException;
16
-use phpDocumentor\Reflection\Element;
17 15
 use phpDocumentor\Reflection\Fqsen;
18 16
 use phpDocumentor\Reflection\Php\ProjectFactoryStrategy;
19 17
 use phpDocumentor\Reflection\Php\StrategyContainer;
20 18
 use phpDocumentor\Reflection\Php\Trait_ as TraitElement;
21 19
 use phpDocumentor\Reflection\Types\Context;
22
-use PhpParser\Comment\Doc;
23
-use PhpParser\Node;
24 20
 use PhpParser\Node\Stmt\ClassMethod;
25 21
 use PhpParser\Node\Stmt\Property as PropertyNode;
26 22
 use PhpParser\Node\Stmt\Trait_ as TraitNode;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
                         break;
74 74
                     case TraitUse::class:
75 75
                         foreach ($stmt->traits as $use) {
76
-                            $trait->addUsedTrait(new Fqsen('\\'. $use->toString()));
76
+                            $trait->addUsedTrait(new Fqsen('\\'.$use->toString()));
77 77
                         }
78 78
                         break;
79 79
                 }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Middleware/ChainFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                     )
34 34
                 );
35 35
             }
36
-            $lastCallable = function ($command) use ($middleware, $lastCallable) {
36
+            $lastCallable = function($command) use ($middleware, $lastCallable) {
37 37
                 return $middleware->execute($command, $lastCallable);
38 38
             };
39 39
         }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/PropertyIterator.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * This file is part of phpDocumentor.
4
-     *
5
-     * For the full copyright and license information, please view the LICENSE
6
-     * file that was distributed with this source code.
7
-     *
8
-     * @copyright 2010-2015 Mike van Riel<[email protected]>
9
-     * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
-     * @link      http://phpdoc.org
11
-     */
3
+ * This file is part of phpDocumentor.
4
+ *
5
+ * For the full copyright and license information, please view the LICENSE
6
+ * file that was distributed with this source code.
7
+ *
8
+ * @copyright 2010-2015 Mike van Riel<[email protected]>
9
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
10
+ * @link      http://phpdoc.org
11
+ */
12 12
 
13 13
 
14 14
 namespace phpDocumentor\Reflection\Php\Factory;
Please login to merge, or discard this patch.