Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             ->setDescription('Installs Sylius in your preferred environment.')
56 56
             ->setHelp(<<<EOT
57 57
 The <info>%command.name%</info> command installs Sylius.
58
-EOT
58
+eot
59 59
             )
60 60
         ;
61 61
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/CheckRequirementsCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             ->setDescription('Checks if all Sylius requirements are satisfied.')
28 28
             ->setHelp(<<<EOT
29 29
 The <info>%command.name%</info> command checks system requirements.
30
-EOT
30
+eot
31 31
             )
32 32
         ;
33 33
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallDatabaseCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             ->setDescription('Install Sylius database.')
28 28
             ->setHelp(<<<EOT
29 29
 The <info>%command.name%</info> command creates Sylius database.
30
-EOT
30
+eot
31 31
             )
32 32
         ;
33 33
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallSampleDataCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             ->setDescription('Install sample data into Sylius.')
30 30
             ->setHelp(<<<EOT
31 31
 The <info>%command.name%</info> command loads the sample data for Sylius.
32
-EOT
32
+eot
33 33
             )
34 34
         ;
35 35
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallAssetsCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             ->setDescription('Installs all Sylius assets.')
27 27
             ->setHelp(<<<EOT
28 28
 The <info>%command.name%</info> command downloads and installs all Sylius media assets.
29
-EOT
29
+eot
30 30
             )
31 31
         ;
32 32
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/SetupCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             ->setDescription('Sylius configuration setup.')
47 47
             ->setHelp(<<<EOT
48 48
 The <info>%command.name%</info> command allows user to configure basic Sylius data.
49
-EOT
49
+eot
50 50
             )
51 51
         ;
52 52
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Command/DebugResourceCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 To show the metadata for a resource, pass its alias:
56 56
 
57 57
     $ php %command.full_name% sylius.user
58
-EOT
58
+eot
59 59
         );
60 60
         $this->addArgument('resource', InputArgument::OPTIONAL, 'Resource to debug');
61 61
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/test/src/Tests/Controller/BookApiTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         $objects = $this->loadFixturesFromFile('books.yml');
77 77
 
78 78
         $data =
79
- <<<EOT
79
+    <<<EOT
80 80
         {
81 81
             "author": "Christie Golden"
82 82
         }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             },
42 42
             "author": "Christie Golden"
43 43
         }
44
-EOT;
44
+eot;
45 45
 
46 46
         $this->client->request('POST', '/books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data);
47 47
         $response = $this->client->getResponse();
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             },
69 69
             "author": "Christie Golden"
70 70
         }
71
-EOT;
71
+eot;
72 72
 
73 73
         $this->client->request('PUT', '/books/' . $objects['book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data);
74 74
         $response = $this->client->getResponse();
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         {
88 88
             "author": "Christie Golden"
89 89
         }
90
-EOT;
90
+eot;
91 91
 
92 92
         $this->client->request('PATCH', '/books/' . $objects['book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data);
93 93
         $response = $this->client->getResponse();
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             },
222 222
             "author": "Christie Golden"
223 223
         }
224
-EOT;
224
+eot;
225 225
 
226 226
         $this->client->request('POST', '/create-custom-book', [], [], ['CONTENT_TYPE' => 'application/json'], $data);
227 227
         $response = $this->client->getResponse();
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/test/src/Tests/Controller/ComicBookApiTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         $objects = $this->loadFixturesFromFile('comic_books.yml');
86 86
 
87 87
         $data =
88
- <<<EOT
88
+    <<<EOT
89 89
         {
90 90
             "authorFirstName": "Joe",
91 91
             "authorLastName": "Kelly"
Please login to merge, or discard this patch.
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             "authorFirstName": "Joe",
32 32
             "authorLastName": "Kelly"
33 33
         }
34
-EOT;
34
+eot;
35 35
 
36 36
         $this->client->request('POST', '/v1/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data);
37 37
         $response = $this->client->getResponse();
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             "authorFirstName": "Joe",
51 51
             "authorLastName": "Kelly"
52 52
         }
53
-EOT;
53
+eot;
54 54
 
55 55
         $this->client->request('POST', '/v1.2/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data);
56 56
         $response = $this->client->getResponse();
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             "authorFirstName": "Joe",
72 72
             "authorLastName": "Kelly"
73 73
         }
74
-EOT;
74
+eot;
75 75
 
76 76
         $this->client->request('PUT', '/v1/comic-books/' . $objects['comic-book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data);
77 77
         $response = $this->client->getResponse();
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             "authorFirstName": "Joe",
92 92
             "authorLastName": "Kelly"
93 93
         }
94
-EOT;
94
+eot;
95 95
 
96 96
         $this->client->request('PATCH', '/v1/comic-books/' . $objects['comic-book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data);
97 97
         $response = $this->client->getResponse();
Please login to merge, or discard this patch.