Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Component/Taxation/Resolver/TaxRateResolver.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 namespace Sylius\Component\Taxation\Resolver;
15 15
 
16 16
 use Sylius\Component\Resource\Repository\RepositoryInterface;
17
-use Sylius\Component\Taxation\Model\TaxableInterface;
18 17
 use Sylius\Component\Taxation\Model\TaxRateInterface;
18
+use Sylius\Component\Taxation\Model\TaxableInterface;
19 19
 
20 20
 class TaxRateResolver implements TaxRateResolverInterface
21 21
 {
Please login to merge, or discard this patch.
src/Sylius/Component/User/Model/UserAwareInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -17,5 +17,10 @@
 block discarded – undo
17 17
 {
18 18
     public function getUser(): ?UserInterface;
19 19
 
20
+    /**
21
+     * @param null|User $user
22
+     *
23
+     * @return void
24
+     */
20 25
     public function setUser(?UserInterface $user);
21 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Model/UserOAuthInterface.php 1 patch
Doc Comments   +24 added lines patch added patch discarded remove patch
@@ -17,19 +17,43 @@
 block discarded – undo
17 17
 
18 18
 interface UserOAuthInterface extends UserAwareInterface, ResourceInterface
19 19
 {
20
+    /**
21
+     * @return string|null
22
+     */
20 23
     public function getProvider(): ?string;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setProvider(?string $provider): void;
23 29
 
30
+    /**
31
+     * @return string|null
32
+     */
24 33
     public function getIdentifier(): ?string;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setIdentifier(?string $identifier): void;
27 39
 
40
+    /**
41
+     * @return string|null
42
+     */
28 43
     public function getAccessToken(): ?string;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setAccessToken(?string $accessToken): void;
31 49
 
50
+    /**
51
+     * @return string|null
52
+     */
32 53
     public function getRefreshToken(): ?string;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function setRefreshToken(?string $refreshToken): void;
35 59
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Account/LoginPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -19,9 +19,18 @@
 block discarded – undo
19 19
 {
20 20
     public function hasValidationErrorWith(string $message): bool;
21 21
 
22
+    /**
23
+     * @return void
24
+     */
22 25
     public function logIn(): void;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function specifyPassword(string $password): void;
25 31
 
32
+    /**
33
+     * @return void
34
+     */
26 35
     public function specifyUsername(string $username): void;
27 36
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/CreatePageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -17,13 +17,28 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function specifyUsername(string $username): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function specifyEmail(string $email): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function specifyPassword(string $password): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function specifyLocale(string $localeCode): void;
29 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Administrator/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,11 +17,23 @@
 block discarded – undo
17 17
 
18 18
 interface UpdatePageInterface extends BaseUpdatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function changeUsername(string $username): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function changeEmail(string $email): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function changePassword(string $password): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function changeLocale(string $localeCode): void;
27 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/CreatePageInterface.php 1 patch
Doc Comments   +48 added lines patch added patch discarded remove patch
@@ -17,35 +17,83 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends BaseCreatePageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function enable(): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function disable(): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function nameIt(string $name): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function specifyCode(string $code): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function describeItAs(string $description): void;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setHostname(string $hostname): void;
31 49
 
50
+    /**
51
+     * @return void
52
+     */
32 53
     public function setContactEmail(string $contactEmail): void;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function defineColor(string $color): void;
35 59
 
60
+    /**
61
+     * @return void
62
+     */
36 63
     public function chooseLocale(string $language): void;
37 64
 
65
+    /**
66
+     * @return void
67
+     */
38 68
     public function chooseCurrency(string $currencyCode): void;
39 69
 
70
+    /**
71
+     * @return void
72
+     */
40 73
     public function chooseDefaultTaxZone(string $taxZone): void;
41 74
 
75
+    /**
76
+     * @return void
77
+     */
42 78
     public function chooseDefaultLocale(?string $locale): void;
43 79
 
80
+    /**
81
+     * @return void
82
+     */
44 83
     public function chooseBaseCurrency(?string $currency): void;
45 84
 
85
+    /**
86
+     * @return void
87
+     */
46 88
     public function chooseTaxCalculationStrategy(string $taxCalculationStrategy): void;
47 89
 
90
+    /**
91
+     * @return void
92
+     */
48 93
     public function allowToSkipShippingStep(): void;
49 94
 
95
+    /**
96
+     * @return void
97
+     */
50 98
     public function allowToSkipPaymentStep(): void;
51 99
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/IndexPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return string
22
+     */
20 23
     public function getUsedThemeName(string $channelCode): ?string;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Channel/UpdatePageInterface.php 1 patch
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -18,29 +18,51 @@
 block discarded – undo
18 18
 
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable(): void;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function disable(): void;
24 30
 
31
+    /**
32
+     * @return void
33
+     */
25 34
     public function setTheme(string $themeName): void;
26 35
 
27 36
     /**
28 37
      * @throws ElementNotFoundException
38
+     * @return void
29 39
      */
30 40
     public function unsetTheme(): void;
31 41
 
32 42
     public function isCodeDisabled(): bool;
33 43
 
44
+    /**
45
+     * @return void
46
+     */
34 47
     public function chooseLocale(string $language): void;
35 48
 
36 49
     public function isLocaleChosen(string $language): bool;
37 50
 
51
+    /**
52
+     * @return void
53
+     */
38 54
     public function chooseCurrency(string $currencyCode): void;
39 55
 
40 56
     public function isCurrencyChosen(string $currencyCode): bool;
41 57
 
58
+    /**
59
+     * @return void
60
+     */
42 61
     public function chooseDefaultTaxZone(string $taxZone): void;
43 62
 
63
+    /**
64
+     * @return void
65
+     */
44 66
     public function chooseTaxCalculationStrategy(string $taxCalculationStrategy): void;
45 67
 
46 68
     public function isDefaultTaxZoneChosen(string $taxZone): bool;
Please login to merge, or discard this patch.