@@ -170,7 +170,7 @@ |
||
| 170 | 170 | interpolation: {stepWidth: 10, stepDelay: 30} |
| 171 | 171 | }); |
| 172 | 172 | })(jQuery); |
| 173 | -JS; |
|
| 173 | +js; |
|
| 174 | 174 | |
| 175 | 175 | $seleniumDriver->executeScript($script); |
| 176 | 176 | $this->getDocument()->waitFor(5, function () { |
@@ -11,13 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Bundle\MailerBundle\DependencyInjection; |
| 13 | 13 | |
| 14 | -use Sylius\Bundle\MailerBundle\Form\Type\EmailType; |
|
| 15 | -use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
|
| 16 | -use Sylius\Bundle\ResourceBundle\Form\Type\ResourceChoiceType; |
|
| 17 | -use Sylius\Bundle\ResourceBundle\SyliusResourceBundle; |
|
| 18 | -use Sylius\Component\Mailer\Model\Email; |
|
| 19 | -use Sylius\Component\Mailer\Model\EmailInterface; |
|
| 20 | -use Sylius\Component\Resource\Factory\Factory; |
|
| 21 | 14 | use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; |
| 22 | 15 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; |
| 23 | 16 | use Symfony\Component\Config\Definition\ConfigurationInterface; |
@@ -11,9 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Component\Mailer\Model; |
| 13 | 13 | |
| 14 | -use Sylius\Component\Resource\Model\TimestampableTrait; |
|
| 15 | -use Sylius\Component\Resource\Model\ToggleableTrait; |
|
| 16 | - |
|
| 17 | 14 | /** |
| 18 | 15 | * @author Paweł Jędrzejewski <[email protected]> |
| 19 | 16 | */ |
@@ -28,6 +28,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 92 | 104 | |
| 93 | 105 | /** |
| 94 | 106 | * @param string $senderAddress |
| 107 | + * @return void |
|
| 95 | 108 | */ |
| 96 | 109 | public function setSenderAddress($senderAddress); |
| 97 | 110 | } |
@@ -11,11 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Component\Mailer\Model; |
| 13 | 13 | |
| 14 | -use Sylius\Component\Resource\Model\CodeAwareInterface; |
|
| 15 | -use Sylius\Component\Resource\Model\ResourceInterface; |
|
| 16 | -use Sylius\Component\Resource\Model\TimestampableInterface; |
|
| 17 | -use Sylius\Component\Resource\Model\ToggleableInterface; |
|
| 18 | - |
|
| 19 | 14 | /** |
| 20 | 15 | * @author Paweł Jędrzejewski <[email protected]> |
| 21 | 16 | */ |