Completed
Push — assert-overflow ( 0688b3...fbf83a )
by Kamil
66:00 queued 44:43
created
src/Sylius/Component/Mailer/Model/EmailInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $code
31
+     * @return void
31 32
      */
32 33
     public function setCode($code);
33 34
 
@@ -38,11 +39,18 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param bool $enabled
42
+     * @return void
41 43
      */
42 44
     public function setEnabled($enabled);
43 45
 
46
+    /**
47
+     * @return void
48
+     */
44 49
     public function enable();
45 50
 
51
+    /**
52
+     * @return void
53
+     */
46 54
     public function disable();
47 55
 
48 56
     /**
@@ -52,6 +60,7 @@  discard block
 block discarded – undo
52 60
 
53 61
     /**
54 62
      * @param string $subject
63
+     * @return void
55 64
      */
56 65
     public function setSubject($subject);
57 66
 
@@ -62,6 +71,7 @@  discard block
 block discarded – undo
62 71
 
63 72
     /**
64 73
      * @param string $content
74
+     * @return void
65 75
      */
66 76
     public function setContent($content);
67 77
 
@@ -72,6 +82,7 @@  discard block
 block discarded – undo
72 82
 
73 83
     /**
74 84
      * @param string $template
85
+     * @return void
75 86
      */
76 87
     public function setTemplate($template);
77 88
 
@@ -82,6 +93,7 @@  discard block
 block discarded – undo
82 93
 
83 94
     /**
84 95
      * @param string $senderName
96
+     * @return void
85 97
      */
86 98
     public function setSenderName($senderName);
87 99
 
@@ -92,6 +104,7 @@  discard block
 block discarded – undo
92 104
 
93 105
     /**
94 106
      * @param string $senderAddress
107
+     * @return void
95 108
      */
96 109
     public function setSenderAddress($senderAddress);
97 110
 }
Please login to merge, or discard this patch.
Core/spec/Taxation/Applicator/OrderShipmentTaxesApplicatorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         $order->getShippingTotal()->willReturn(10);
113 113
         $order->getShipments()->willReturn(new ArrayCollection([]));
114 114
 
115
-        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]);;
115
+        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]); ;
116 116
     }
117 117
 
118 118
     function it_does_nothing_if_tax_rate_cannot_be_resolved(
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/Parameters.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
      * {@inheritdoc}
23
+     * @param string $path
23 24
      */
24 25
     public function get($path, $default = null, $deep = false)
25 26
     {
Please login to merge, or discard this patch.
app/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Composer\Autoload\ClassLoader;
5 5
 
6 6
 /** @var ClassLoader $loader */
7
-$loader = require __DIR__.'/../vendor/autoload.php';
7
+$loader = require __DIR__ . '/../vendor/autoload.php';
8 8
 
9 9
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
10 10
 
Please login to merge, or discard this patch.
web/app_test.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@
 block discarded – undo
22 22
     || !(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')
23 23
 ) {
24 24
     header('HTTP/1.0 403 Forbidden');
25
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
25
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
26 26
 }
27 27
 
28 28
 /** @var \Composer\Autoload\ClassLoader $loader */
29
-$loader = require __DIR__.'/../app/autoload.php';
30
-include_once __DIR__.'/../var/bootstrap.php.cache';
29
+$loader = require __DIR__ . '/../app/autoload.php';
30
+include_once __DIR__ . '/../var/bootstrap.php.cache';
31 31
 
32 32
 Debug::enable();
33 33
 
Please login to merge, or discard this patch.
web/app.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
  */
18 18
 
19 19
 /** @var \Composer\Autoload\ClassLoader $loader */
20
-$loader = require __DIR__.'/../app/autoload.php';
21
-include_once __DIR__.'/../var/bootstrap.php.cache';
20
+$loader = require __DIR__ . '/../app/autoload.php';
21
+include_once __DIR__ . '/../var/bootstrap.php.cache';
22 22
 
23 23
 $kernel = new AppKernel('prod', false);
24 24
 $kernel->loadClassCache();
Please login to merge, or discard this patch.
web/app_test_cached.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@
 block discarded – undo
21 21
     || !(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')
22 22
 ) {
23 23
     header('HTTP/1.0 403 Forbidden');
24
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
24
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
25 25
 }
26 26
 
27 27
 /** @var \Composer\Autoload\ClassLoader $loader */
28
-$loader = require __DIR__.'/../app/autoload.php';
29
-include_once __DIR__.'/../var/bootstrap.php.cache';
28
+$loader = require __DIR__ . '/../app/autoload.php';
29
+include_once __DIR__ . '/../var/bootstrap.php.cache';
30 30
 
31 31
 $kernel = new AppKernel('test_cached', false);
32 32
 $kernel->loadClassCache();
Please login to merge, or discard this patch.
web/app_dev.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
     || !(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')
28 28
 )) {
29 29
     header('HTTP/1.0 403 Forbidden');
30
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
30
+    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
31 31
 }
32 32
 
33 33
 /** @var \Composer\Autoload\ClassLoader $loader */
34
-$loader = require __DIR__.'/../app/autoload.php';
35
-include_once __DIR__.'/../var/bootstrap.php.cache';
34
+$loader = require __DIR__ . '/../app/autoload.php';
35
+include_once __DIR__ . '/../var/bootstrap.php.cache';
36 36
 
37 37
 Debug::enable();
38 38
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/CreatePageInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -18,39 +18,52 @@
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
25 32
      * @param string $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $code
40
+     * @return void
32 41
      */
33 42
     public function specifyCode($code);
34 43
 
35 44
     /**
36 45
      * @param string $gateway
46
+     * @return void
37 47
      */
38 48
     public function chooseGateway($gateway);
39 49
 
40 50
     /**
41 51
      * @param string $channelName
52
+     * @return void
42 53
      */
43 54
     public function checkChannel($channelName);
44 55
 
45 56
     /**
46 57
      * @param string $description
47 58
      * @param string $languageCode
59
+     * @return void
48 60
      */
49 61
     public function describeIt($description, $languageCode);
50 62
 
51 63
     /**
52 64
      * @param string $instructions
53 65
      * @param string $languageCode
66
+     * @return void
54 67
      */
55 68
     public function setInstructions($instructions, $languageCode);
56 69
 
Please login to merge, or discard this patch.