Passed
Push — master ( 7aa904...662637 )
by Alex
02:49
created
Mezon/Gui/Tests/Common/CustomHeaderActionsUnitTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
         return [
19 19
             // #0, the first case - simple header
20 20
             [
21
-                function (): object {
21
+                function(): object {
22 22
                     // setup
23 23
                     unset($_GET['create-button']);
24 24
                     $listBuilder = new ListBuilder\Common($this->getFields(), new FakeAdapter($this->getRecords()));
25 25
                     $listBuilder->setCustomHeaderActions('custom header actions');
26 26
                     return $listBuilder;
27 27
                 },
28
-                function ($result): void {
28
+                function($result): void {
29 29
                     // asserting method
30 30
                     $this->assertStringContainsString('<form', $result);
31 31
                     $this->assertStringContainsString('</form>', $result);
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
             ],
36 36
             // #1, the second case - full header
37 37
             [
38
-                function (): object {
38
+                function(): object {
39 39
                     // setup
40 40
                     $_GET['create-button'] = 1;
41 41
                     $listBuilder = new ListBuilder\Common($this->getFields(), new FakeAdapter($this->getRecords()));
42 42
                     $listBuilder->setCustomHeaderActions('custom header actions');
43 43
                     return $listBuilder;
44 44
                 },
45
-                function ($result): void {
45
+                function($result): void {
46 46
                     // asserting method
47 47
                     $this->assertStringContainsString('<form', $result);
48 48
                     $this->assertStringContainsString('</form>', $result);
@@ -52,14 +52,14 @@  discard block
 block discarded – undo
52 52
             ],
53 53
             // #2, the third case - simple header
54 54
             [
55
-                function (): object {
55
+                function(): object {
56 56
                     // setup
57 57
                     $_GET['create-button'] = 1;
58 58
                     $listBuilder = new ListBuilder\Common($this->getFields(), new FakeAdapter([]));
59 59
                     $listBuilder->setCustomHeaderActions('custom header actions');
60 60
                     return $listBuilder;
61 61
                 },
62
-                function ($result): void {
62
+                function($result): void {
63 63
                     // asserting method
64 64
                     $this->assertStringNotContainsString('<form', $result);
65 65
                     $this->assertStringNotContainsString('</form>', $result);
Please login to merge, or discard this patch.
Mezon/Gui/Tests/Common/NoItemsCreateButtonUnitTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,27 +18,27 @@
 block discarded – undo
18 18
         return [
19 19
             // #0, the first case - empty listing
20 20
             [
21
-                function (): object {
21
+                function(): object {
22 22
                     // setup
23 23
                     unset($_GET['create-button']);
24 24
                     return new ListBuilder\Common($this->getFields(), new FakeAdapter([]));
25 25
                 },
26
-                function ($result): void {
26
+                function($result): void {
27 27
                     // asserting method
28 28
                     $this->assertStringNotContainsString('create-button"', $result);
29 29
                 }
30 30
             ],
31 31
             // #1, the second case - full header
32 32
             [
33
-                function (): object {
33
+                function(): object {
34 34
                     // setup
35 35
                     $_GET['create-button'] = 1;
36
-                    if(isset($_GET['create-page-endpoint'])){
36
+                    if (isset($_GET['create-page-endpoint'])) {
37 37
                         unset($_GET['create-page-endpoint']);
38 38
                     }
39 39
                     return new ListBuilder\Common($this->getFields(), new FakeAdapter([]));
40 40
                 },
41
-                function ($result): void {
41
+                function($result): void {
42 42
                     // asserting method
43 43
                     $this->assertStringContainsString('../create/', $result);
44 44
                 }
Please login to merge, or discard this patch.
Mezon/Gui/FormBuilder/Tests/FormBuilderUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     private function formHeader(bool $flag)
40 40
     {
41
-        if (! $flag) {
41
+        if (!$flag) {
42 42
             $_GET['no-header'] = 1;
43 43
         } else {
44 44
             unset($_GET['no-header']);
Please login to merge, or discard this patch.