Completed
Push — master ( 2704f9...f273e8 )
by Tomáš
02:19
created

RegisterMigrationsEventSubscriber.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * This file is part of Zenify
5
 * Copyright (c) 2014 Tomas Votruba (http://tomasvotruba.cz)
6
 */
7
8
namespace Zenify\DoctrineMigrations\EventSubscriber;
9
10
use Doctrine\DBAL\Migrations\Configuration\Configuration;
11
use Doctrine\DBAL\Migrations\Tools\Console\Command\AbstractCommand;
12
use Symfony\Component\Console\Command\Command;
13
use Symfony\Component\Console\ConsoleEvents;
14
use Symfony\Component\Console\Event\ConsoleCommandEvent;
15
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
16
17
18 View Code Duplication
final class RegisterMigrationsEventSubscriber implements EventSubscriberInterface
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
19
{
20
21
	/**
22
	 * @var Configuration
23
	 */
24
	private $configuration;
25
26
27 6
	public function __construct(Configuration $configuration)
28
	{
29 6
		$this->configuration = $configuration;
30 6
	}
31
32
33
	/**
34
	 * {@inheritdoc}
35
	 */
36 6
	public static function getSubscribedEvents()
37
	{
38 6
		return [ConsoleEvents::COMMAND => 'registerMigrations'];
39
	}
40
41
42 6
	public function registerMigrations(ConsoleCommandEvent $event)
43
	{
44 6
		$command = $event->getCommand();
45 6
		if ( ! $this->isMigrationCommand($command)) {
46
			return;
47
		}
48
49 6
		$this->configuration->registerMigrationsFromDirectory(
50 6
			$this->configuration->getMigrationsDirectory()
51 6
		);
52 6
	}
53
54
55
	/**
56
	 * @return bool
57
	 */
58 6
	private function isMigrationCommand(Command $command)
59
	{
60 6
		return $command instanceof AbstractCommand;
61
	}
62
63
}
64