diff --git a/src/Service/CatalogSync/Syncer/OciSyncer.php b/src/Service/CatalogSync/Syncer/OciSyncer.php index 14901a85..8efd5ece 100644 --- a/src/Service/CatalogSync/Syncer/OciSyncer.php +++ b/src/Service/CatalogSync/Syncer/OciSyncer.php @@ -25,8 +25,8 @@ class OciSyncer extends AbstractSyncer implements Syncer { public function __construct( protected OciSourceDatabase $source_db, - protected PdoDestinationDatabase $destination_db, - protected array $allowedBlckCodes = [], + PdoDestinationDatabase $destination_db, + array $allowedBlckCodes = [], ) { parent::__construct($destination_db, $allowedBlckCodes); diff --git a/src/Service/CatalogSync/Syncer/OciWithCacheSyncer.php b/src/Service/CatalogSync/Syncer/OciWithCacheSyncer.php index 4c490dd9..91fe43ba 100644 --- a/src/Service/CatalogSync/Syncer/OciWithCacheSyncer.php +++ b/src/Service/CatalogSync/Syncer/OciWithCacheSyncer.php @@ -26,10 +26,10 @@ class OciWithCacheSyncer extends OciSyncer implements Syncer { public function __construct( - protected OciSourceDatabase $source_db, - protected PdoDestinationDatabase $destination_db, + OciSourceDatabase $source_db, + PdoDestinationDatabase $destination_db, protected PdoDestinationDatabase $temp_db, - protected array $allowedBlckCodes = [], + array $allowedBlckCodes = [], private string $mysqlCommand = 'mysql', private string $mysqldumpCommand = 'mysqldump', ) { diff --git a/src/Service/CatalogSync/Syncer/PdoMysqlSyncer.php b/src/Service/CatalogSync/Syncer/PdoMysqlSyncer.php index 9cd82446..0c9f9d9c 100644 --- a/src/Service/CatalogSync/Syncer/PdoMysqlSyncer.php +++ b/src/Service/CatalogSync/Syncer/PdoMysqlSyncer.php @@ -26,8 +26,8 @@ class PdoMysqlSyncer extends AbstractSyncer implements Syncer { public function __construct( protected PdoMysqlSourceDatabase $source_db, - protected PdoDestinationDatabase $destination_db, - protected array $allowedBlckCodes = [], + PdoDestinationDatabase $destination_db, + array $allowedBlckCodes = [], ) { parent::__construct($destination_db, $allowedBlckCodes); }