Completed
Push — master ( 19528c...a016b0 )
by Mathias
23s queued 15s
created
module/Jobs/test/JobsTest/Repository/Filter/PaginationAdminQueryTest.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 /**
4 4
  *
5
-
6 5
  */
7 6
 
8 7
 declare(strict_types=1);
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.