@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | /** |
| 4 | 4 | * |
| 5 | - |
|
| 6 | 5 | */ |
| 7 | 6 | |
| 8 | 7 | declare(strict_types=1); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | public function testSortDoesCallSort() |
| 81 | 81 | { |
| 82 | - $sort="one,-two"; |
|
| 82 | + $sort = "one,-two"; |
|
| 83 | 83 | $qb = $this->queryBuilder->reveal(); |
| 84 | 84 | $this->queryBuilder->field('isDraft')->shouldBeCalled()->willReturn($qb); |
| 85 | 85 | $this->queryBuilder->equals(false)->shouldBeCalled(); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | public function testTextDoesFilterCorrectly() |
| 93 | 93 | { |
| 94 | - $text="test text search"; |
|
| 94 | + $text = "test text search"; |
|
| 95 | 95 | $qb = $this->queryBuilder->reveal(); |
| 96 | 96 | $this->queryBuilder->field('isDraft')->shouldBeCalled()->willReturn($qb); |
| 97 | 97 | $this->queryBuilder->equals(false)->shouldBeCalled(); |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | public function testTextDoesFilterJobIdsCorrectly() |
| 104 | 104 | { |
| 105 | - $text="job:jobId job:anotherid,yajid"; |
|
| 105 | + $text = "job:jobId job:anotherid,yajid"; |
|
| 106 | 106 | $qb = $this->queryBuilder->reveal(); |
| 107 | 107 | $this->queryBuilder->field('isDraft')->shouldBeCalled()->willReturn($qb); |
| 108 | 108 | $this->queryBuilder->equals(false)->shouldBeCalled(); |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | public function testTextDoesFilterJobIdsAndTextCorrectly() |
| 117 | 117 | { |
| 118 | - $text="job:jobId and some other text job:anotherid,yajid"; |
|
| 118 | + $text = "job:jobId and some other text job:anotherid,yajid"; |
|
| 119 | 119 | $qb = $this->queryBuilder->reveal(); |
| 120 | 120 | $this->queryBuilder->field('isDraft')->shouldBeCalled()->willReturn($qb); |
| 121 | 121 | $this->queryBuilder->equals(false)->shouldBeCalled(); |