Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Behat/Page/Admin/Taxon/UpdatePage.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,6 +428,7 @@  discard block
 block discarded – undo
428 428
 
429 429
     /**
430 430
      * {@inheritdoc}
431
+     * @param string $name
431 432
      */
432 433
     protected function getElement($name, array $parameters = [])
433 434
     {
@@ -507,7 +508,7 @@  discard block
 block discarded – undo
507 508
     /**
508 509
      * @param string $type
509 510
      *
510
-     * @return NodeElement
511
+     * @return string
511 512
      */
512 513
     private function getImageElementByType($type)
513 514
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/NotificationCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @throws NotificationExpectationMismatchException
23
+     * @return void
23 24
      */
24 25
     public function checkNotification(string $message, NotificationType $type): void;
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,31 +19,37 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param string $dateTime
22
+     * @return void
22 23
      */
23 24
     public function specifyFilterDateFrom(string $dateTime);
24 25
 
25 26
     /**
26 27
      * @param string $dateTime
28
+     * @return void
27 29
      */
28 30
     public function specifyFilterDateTo(string $dateTime);
29 31
 
30 32
     /**
31 33
      * @param string $channelName
34
+     * @return void
32 35
      */
33 36
     public function chooseChannelFilter($channelName);
34 37
 
35 38
     /**
36 39
      * @param string $currencyName
40
+     * @return void
37 41
      */
38 42
     public function chooseCurrencyFilter($currencyName);
39 43
 
40 44
     /**
41 45
      * @param string $total
46
+     * @return void
42 47
      */
43 48
     public function specifyFilterTotalGreaterThan($total);
44 49
 
45 50
     /**
46 51
      * @param string $total
52
+     * @return void
47 53
      */
48 54
     public function specifyFilterTotalLessThan($total);
49 55
 }
Please login to merge, or discard this patch.
app/TestAppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 declare(strict_types=1);
13 13
 
14
-require_once __DIR__.'/AppKernel.php';
14
+require_once __DIR__ . '/AppKernel.php';
15 15
 
16 16
 use ProxyManager\Proxy\VirtualProxyInterface;
17 17
 use PSS\SymfonyMockerContainer\DependencyInjection\MockerContainer;
Please login to merge, or discard this patch.
web/app_test_cached.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
     || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1', '113.0.0.1', '10.0.0.1'], true) || php_sapi_name() === 'cli-server')
24 24
 ) {
25 25
     header('HTTP/1.0 403 Forbidden');
26
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
26
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
27 27
 }
28 28
 
29
-require __DIR__.'/../vendor/autoload.php';
29
+require __DIR__ . '/../vendor/autoload.php';
30 30
 
31 31
 $kernel = new AppKernel('test_cached', false);
32 32
 
Please login to merge, or discard this patch.
web/app.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Live (production) environment.
19 19
  */
20 20
 
21
-require __DIR__.'/../vendor/autoload.php';
21
+require __DIR__ . '/../vendor/autoload.php';
22 22
 
23 23
 $kernel = new AppKernel('prod', false);
24 24
 
Please login to merge, or discard this patch.
web/app_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
     || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1', '113.0.0.1', '10.0.0.1'], true) || php_sapi_name() === 'cli-server')
25 25
 ) {
26 26
     header('HTTP/1.0 403 Forbidden');
27
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
27
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
28 28
 }
29 29
 
30
-require __DIR__.'/../vendor/autoload.php';
30
+require __DIR__ . '/../vendor/autoload.php';
31 31
 
32 32
 Debug::enable();
33 33
 
Please login to merge, or discard this patch.
web/app_staging.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * Staging environment.
19 19
  */
20 20
 
21
-require __DIR__.'/../vendor/autoload.php';
21
+require __DIR__ . '/../vendor/autoload.php';
22 22
 
23 23
 $kernel = new AppKernel('staging', false);
24 24
 
Please login to merge, or discard this patch.
web/app_dev.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
     || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1', '113.0.0.1', '10.0.0.1'], true) || php_sapi_name() === 'cli-server')
30 30
 )) {
31 31
     header('HTTP/1.0 403 Forbidden');
32
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
32
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
33 33
 }
34 34
 
35
-require __DIR__.'/../vendor/autoload.php';
35
+require __DIR__ . '/../vendor/autoload.php';
36 36
 
37 37
 Debug::enable();
38 38
 
Please login to merge, or discard this patch.