Skip to content

Commit

Permalink
#4330: Datastore MySQL import - Change some class members from privat…
Browse files Browse the repository at this point in the history
…e to protected (#4331)
  • Loading branch information
stefan-korn authored Nov 7, 2024
1 parent 373a734 commit 3ce8b0b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@ class MysqlImportFactory implements ImportFactoryInterface {
*
* @var \Drupal\datastore\Storage\ImportJobStoreFactory
*/
private ImportJobStoreFactory $importJobStoreFactory;
protected ImportJobStoreFactory $importJobStoreFactory;

/**
* Database table factory service.
*
* @var \Drupal\datastore_mysql_import\Storage\MySqlDatabaseTableFactory
*/
private $databaseTableFactory;
protected $databaseTableFactory;

/**
* DKAN logger channel service.
*
* @var \Psr\Log\LoggerInterface
*/
private LoggerInterface $logger;
protected LoggerInterface $logger;

/**
* Event dispatcher service.
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
private EventDispatcherInterface $eventDispatcher;
protected EventDispatcherInterface $eventDispatcher;

/**
* Constructor.
Expand Down

0 comments on commit 3ce8b0b

Please sign in to comment.