@@ -43,7 +43,7 @@ |
||
| 43 | 43 | $this->mailer->send(Argument::type(\Swift_Message::class))->shouldBeCalled(); |
| 44 | 44 | |
| 45 | 45 | $closureExceuted = false; |
| 46 | - $this->fixture->send($message, function (\Swift_Message $message) use (&$closureExceuted) { |
|
| 46 | + $this->fixture->send($message, function(\Swift_Message $message) use (&$closureExceuted) { |
|
| 47 | 47 | // from |
| 48 | 48 | $this->assertEquals(['[email protected]' => 'from'], $message->getFrom()); |
| 49 | 49 | // reply-to |
@@ -16,19 +16,19 @@ |
||
| 16 | 16 | $fixture->addTo('[email protected]', 'user1'); |
| 17 | 17 | $this->assertEquals(['[email protected]' => 'user1'], $fixture->getTo()); |
| 18 | 18 | $fixture->addTo('[email protected]', 'user2'); |
| 19 | - $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2',], $fixture->getTo()); |
|
| 19 | + $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2', ], $fixture->getTo()); |
|
| 20 | 20 | |
| 21 | 21 | $this->assertEmpty($fixture->getCc()); |
| 22 | 22 | $fixture->addCc('[email protected]', 'user1'); |
| 23 | 23 | $this->assertEquals(['[email protected]' => 'user1'], $fixture->getCc()); |
| 24 | 24 | $fixture->addCc('[email protected]', 'user2'); |
| 25 | - $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2',], $fixture->getCc()); |
|
| 25 | + $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2', ], $fixture->getCc()); |
|
| 26 | 26 | |
| 27 | 27 | $this->assertEmpty($fixture->getBcc()); |
| 28 | 28 | $fixture->addBcc('[email protected]', 'user1'); |
| 29 | 29 | $this->assertEquals(['[email protected]' => 'user1'], $fixture->getBcc()); |
| 30 | 30 | $fixture->addBcc('[email protected]', 'user2'); |
| 31 | - $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2',], $fixture->getBcc()); |
|
| 31 | + $this->assertEquals(['[email protected]' => 'user1', '[email protected]' => 'user2', ], $fixture->getBcc()); |
|
| 32 | 32 | |
| 33 | 33 | $this->assertEmpty($fixture->getReplyTo()); |
| 34 | 34 | $fixture->setReplyTo('[email protected]'); |
@@ -18,6 +18,6 @@ |
||
| 18 | 18 | |
| 19 | 19 | public function registerContainerConfiguration(LoaderInterface $loader) |
| 20 | 20 | { |
| 21 | - $loader->load(__DIR__.'/config.yml'); |
|
| 21 | + $loader->load(__DIR__ . '/config.yml'); |
|
| 22 | 22 | } |
| 23 | 23 | } |
@@ -1,4 +1,4 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -$loader = require __DIR__.'/../../vendor/autoload.php'; |
|
| 4 | -require __DIR__.'/AppKernel.php'; |
|
| 3 | +$loader = require __DIR__ . '/../../vendor/autoload.php'; |
|
| 4 | +require __DIR__ . '/AppKernel.php'; |
|
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | set_time_limit(0); |
| 4 | 4 | |
| 5 | -require_once __DIR__.'/autoload.php'; |
|
| 5 | +require_once __DIR__ . '/autoload.php'; |
|
| 6 | 6 | |
| 7 | 7 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
| 8 | 8 | |