Completed
Push — master ( dadc2f...03811a )
by Alex
03:35
created
Mezon/Gui/Tests/Common/ListBuilderNoItemsCreateButtonUnitTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,24 +18,24 @@
 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 36
                     return new ListBuilder\Common($this->getFields(), new FakeAdapter([]));
37 37
                 },
38
-                function ($result): void {
38
+                function($result): void {
39 39
                     // asserting method
40 40
                     $this->assertStringContainsString('../create/', $result);
41 41
                 }
Please login to merge, or discard this patch.
Mezon/Gui/Tests/Common/ListBuilderCustomHeaderActionsUnitTest.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/Simple/ListBuilderNoItemsCreateButtonUnitTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         return [
19 19
             // #0, the first case - without button
20 20
             [
21
-                function (): object {
21
+                function(): object {
22 22
                     // setup
23 23
                     unset($_GET['create-button']);
24 24
                     return new ListBuilder\Simple($this->getFields(), new FakeAdapter([]));
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             ],
27 27
             // #1, the second case - without button, even if we try to display it
28 28
             [
29
-                function (): object {
29
+                function(): object {
30 30
                     // setup
31 31
                     $_GET['create-button'] = 1;
32 32
                     return new ListBuilder\Simple($this->getFields(), new FakeAdapter([]));
Please login to merge, or discard this patch.