Skip to content

Commit

Permalink
fix gentle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelien-riv committed May 17, 2018
1 parent 03216f3 commit 4c3063c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/modules/DataIntegrityCheck/DataIntegrityCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class DataIntegrityCheck implements ModuleWorkerInterface
/**
* DataIntegrityCheck constructor.
* @param ModuleInterface|DataIntegrityCheckModule $module
* @scrutinizer ignore-call
*/
public function __construct(ModuleInterface $module)
{
Expand Down
5 changes: 5 additions & 0 deletions src/modules/MissingKeyDetect/MissingKeyDetect.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ class MissingKeyDetect implements ModuleWorkerInterface
{
private $config;

/**
* MissingKeyDetect constructor.
* @param ModuleInterface|MissingKeyDetectModule $module
* @scrutinizer ignore-call
*/
public function __construct(ModuleInterface $module)
{
$this->config = $module->getConfig();
Expand Down
1 change: 1 addition & 0 deletions src/modules/SchemaIntegrityCheck/SchemaIntegrityCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class SchemaIntegrityCheck implements ModuleWorkerInterface
/**
* SchemaIntegrityCheck constructor.
* @param ModuleInterface|DataIntegrityCheckModule $module
* @scrutinizer ignore-call
*/
public function __construct(ModuleInterface $module)
{
Expand Down
1 change: 0 additions & 1 deletion tests/modules/DataIntegrityCheck/DataIntegrityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace DBCheckerTests\modules\DataIntegrity;

use DBChecker\InputModules\InputModuleManager;
use DBChecker\modules\DataBase\DatabasesModule;
use DBChecker\modules\DataIntegrityCheck\DataIntegrityCheck;
use DBChecker\modules\DataIntegrityCheck\DataIntegrityCheckMatch;
use DBChecker\modules\DataIntegrityCheck\DataIntegrityCheckModule;
Expand Down
1 change: 0 additions & 1 deletion tests/modules/SchemaIntegrityCheck/SchemaIntegrityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace DBCheckerTests\modules\SchemaIntegrity;

use DBChecker\InputModules\InputModuleManager;
use DBChecker\modules\DataBase\DatabasesModule;
use DBChecker\modules\ModuleManager;
use DBChecker\modules\SchemaIntegrityCheck\SchemaIntegrityCheck;
use DBChecker\modules\SchemaIntegrityCheck\SchemaIntegrityCheckMatch;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@

namespace DBCheckerTests\modules\UniqueIntegrityCheckTest;

use DBChecker\DBAL\MySQLDBAL;
use DBChecker\InputModules\InputModuleManager;
use DBChecker\modules\DataBase\DatabasesModule;
use DBChecker\modules\ModuleManager;
use DBChecker\modules\UniqueIntegrityCheck\UniqueIntegrityCheck;
use DBChecker\modules\UniqueIntegrityCheck\UniqueIntegrityCheckMatch;
use DBChecker\modules\UniqueIntegrityCheck\UniqueIntegrityCheckModule;
use DBCheckerTests\DatabaseUtilities;
use JMS\Serializer\Tests\Fixtures\Input;

class UniqueIntegrityCheckTest extends \PHPUnit\Framework\TestCase
{
Expand Down

0 comments on commit 4c3063c

Please sign in to comment.