Completed
Push — master ( 267f86...7e858c )
by Naveen
09:07 queued 01:25
created
vendor/phpspec/prophecy/spec/Prophecy/Doubler/DoublerSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Prophecy\Doubler;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 
8 7
 class DoublerSpec extends ObjectBehavior
9 8
 {
Please login to merge, or discard this patch.
vendor/phpspec/prophecy/spec/Prophecy/Prediction/CallbackPredictionSpec.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Prophecy\Prediction;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-
7 6
 use RuntimeException;
8 7
 
9 8
 class CallbackPredictionSpec extends ObjectBehavior
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     function it_proxies_call_to_callback($object, $method, $call)
27 27
     {
28
-        $returnFirstCallCallback = function ($calls, $object, $method) {
28
+        $returnFirstCallCallback = function($calls, $object, $method) {
29 29
             throw new RuntimeException;
30 30
         };
31 31
 
Please login to merge, or discard this patch.
vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $reflectionClass = $this->getReflectionClass($className);
101 101
 
102 102
         if ($this->isInstantiableViaReflection($reflectionClass)) {
103
-            return function () use ($reflectionClass) {
103
+            return function() use ($reflectionClass) {
104 104
                 return $reflectionClass->newInstanceWithoutConstructor();
105 105
             };
106 106
         }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString);
116 116
 
117
-        return function () use ($serializedString) {
117
+        return function() use ($serializedString) {
118 118
             return unserialize($serializedString);
119 119
         };
120 120
     }
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      */
129 129
     private function getReflectionClass($className)
130 130
     {
131
-        if (! class_exists($className)) {
131
+        if (!class_exists($className)) {
132 132
             throw InvalidArgumentException::fromNonExistingClass($className);
133 133
         }
134 134
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      */
152 152
     private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, $serializedString)
153 153
     {
154
-        set_error_handler(function ($code, $message, $file, $line) use ($reflectionClass, & $error) {
154
+        set_error_handler(function($code, $message, $file, $line) use ($reflectionClass, & $error) {
155 155
             $error = UnexpectedValueException::fromUncleanUnSerialization(
156 156
                 $reflectionClass,
157 157
                 $message,
@@ -197,10 +197,10 @@  discard block
 block discarded – undo
197 197
     private function isInstantiableViaReflection(ReflectionClass $reflectionClass)
198 198
     {
199 199
         if (\PHP_VERSION_ID >= 50600) {
200
-            return ! ($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal());
200
+            return !($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal());
201 201
         }
202 202
 
203
-        return \PHP_VERSION_ID >= 50400 && ! $this->hasInternalAncestors($reflectionClass);
203
+        return \PHP_VERSION_ID >= 50400 && !$this->hasInternalAncestors($reflectionClass);
204 204
     }
205 205
 
206 206
     /**
@@ -263,11 +263,11 @@  discard block
 block discarded – undo
263 263
      */
264 264
     private function isSafeToClone(ReflectionClass $reflection)
265 265
     {
266
-        if (method_exists($reflection, 'isCloneable') && ! $reflection->isCloneable()) {
266
+        if (method_exists($reflection, 'isCloneable') && !$reflection->isCloneable()) {
267 267
             return false;
268 268
         }
269 269
 
270 270
         // not cloneable if it implements `__clone`, as we want to avoid calling it
271
-        return ! $reflection->hasMethod('__clone');
271
+        return !$reflection->hasMethod('__clone');
272 272
     }
273 273
 }
Please login to merge, or discard this patch.
DoctrineTest/InstantiatorTest/Exception/UnexpectedValueExceptionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $this->assertSame($previous, $exception->getPrevious());
44 44
         $this->assertSame(
45 45
             'An exception was raised while trying to instantiate an instance of "'
46
-            . __CLASS__  . '" via un-serialization',
46
+            . __CLASS__ . '" via un-serialization',
47 47
             $exception->getMessage()
48 48
         );
49 49
     }
Please login to merge, or discard this patch.
instantiator/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             $this->assertInstanceOf('Exception', $previous);
114 114
 
115 115
             // in PHP 5.4.29 and PHP 5.5.13, this case is not a notice, but an exception being thrown
116
-            if (! (\PHP_VERSION_ID === 50429 || \PHP_VERSION_ID === 50513)) {
116
+            if (!(\PHP_VERSION_ID === 50429 || \PHP_VERSION_ID === 50513)) {
117 117
                 $this->assertSame(
118 118
                     'Could not produce an instance of "DoctrineTest\\InstantiatorTestAsset\WakeUpNoticesAsset" '
119 119
                     . 'via un-serialization, since an error was triggered in file "'
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Context.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             && 'default' !== $namespace
95 95
         ) {
96 96
             // Srip leading and trailing slash
97
-            $this->namespace = trim((string)$namespace, '\\');
97
+            $this->namespace = trim((string) $namespace, '\\');
98 98
         } else {
99 99
             $this->namespace = '';
100 100
         }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function setNamespaceAlias($alias, $fqnn)
133 133
     {
134
-        $this->namespace_aliases[$alias] = '\\' . trim((string)$fqnn, '\\');
134
+        $this->namespace_aliases[$alias] = '\\' . trim((string) $fqnn, '\\');
135 135
         return $this;
136 136
     }
137 137
     
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function setLSEN($lsen)
150 150
     {
151
-        $this->lsen = (string)$lsen;
151
+        $this->lsen = (string) $lsen;
152 152
         return $this;
153 153
     }
154 154
 }
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Description.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             );
115 115
 
116 116
             $count = count($this->parsedContents);
117
-            for ($i=1; $i<$count; $i += 2) {
117
+            for ($i = 1; $i < $count; $i += 2) {
118 118
                 $this->parsedContents[$i] = Tag::createInstance(
119 119
                     $this->parsedContents[$i],
120 120
                     $this->docblock
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             //In order to allow "literal" inline tags, the otherwise invalid
125 125
             //sequence "{@}" is changed to "@", and "{}" is changed to "}".
126 126
             //See unit tests for examples.
127
-            for ($i=0; $i<$count; $i += 2) {
127
+            for ($i = 0; $i < $count; $i += 2) {
128 128
                 $this->parsedContents[$i] = str_replace(
129 129
                     array('{@}', '{}'),
130 130
                     array('@', '}'),
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Location.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function setLineNumber($lineNumber)
51 51
     {
52
-        $this->lineNumber = (int)$lineNumber;
52
+        $this->lineNumber = (int) $lineNumber;
53 53
 
54 54
         return $this;
55 55
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function setColumnNumber($columnNumber)
71 71
     {
72
-        $this->columnNumber = (int)$columnNumber;
72
+        $this->columnNumber = (int) $columnNumber;
73 73
 
74 74
         return $this;
75 75
     }
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Serializer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function setIndentationString($indentString)
69 69
     {
70
-        $this->indentString = (string)$indentString;
70
+        $this->indentString = (string) $indentString;
71 71
         return $this;
72 72
     }
73 73
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function setIndent($indent)
92 92
     {
93
-        $this->indent = (int)$indent;
93
+        $this->indent = (int) $indent;
94 94
         return $this;
95 95
     }
96 96
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function setIsFirstLineIndented($indentFirstLine)
118 118
     {
119
-        $this->isFirstLineIndented = (bool)$indentFirstLine;
119
+        $this->isFirstLineIndented = (bool) $indentFirstLine;
120 120
         return $this;
121 121
     }
122 122
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public function setLineLength($lineLength)
145 145
     {
146
-        $this->lineLength = null === $lineLength ? null : (int)$lineLength;
146
+        $this->lineLength = null === $lineLength ? null : (int) $lineLength;
147 147
         return $this;
148 148
     }
149 149
 
Please login to merge, or discard this patch.