Completed
Push — master ( 0375a2...821836 )
by Ivannis Suárez
02:49
created
Tests/Units/CriteriaTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     public function testCustom()
111 111
     {
112 112
         $this
113
-            ->given($criteria = Criteria::custom(function () {
113
+            ->given($criteria = Criteria::custom(function() {
114 114
 
115 115
             }))
116 116
             ->then()
Please login to merge, or discard this patch.
Tests/Units/SpecificationTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $this
45 45
             ->given($specificationMock = $this->newDefaultMockTestedInstance())
46 46
             ->given($specification = $this->newRandomSpecification())
47
-            ->exception(function () use ($specificationMock, $specification) {
47
+            ->exception(function() use ($specificationMock, $specification) {
48 48
                 $specificationMock->foo($specification);
49 49
             })
50 50
                 ->isInstanceOf(\BadMethodCallException::class)
Please login to merge, or discard this patch.
Selector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     /**
171 171
      * @param SelectorInterface|mixed $value
172 172
      *
173
-     * @return \Cubiche\Domain\Specification\Constraint\GreaterThan
173
+     * @return GreaterThan
174 174
      */
175 175
     public function gt($value)
176 176
     {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
     /**
283 283
      * @param SelectorInterface|mixed $value
284 284
      *
285
-     * @return \Cubiche\Core\Specification\SelectorInterface
285
+     * @return SelectorInterface
286 286
      */
287 287
     protected function createSelector($value)
288 288
     {
Please login to merge, or discard this patch.