Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 51489aa5 authored by Nicolas's avatar Nicolas
Browse files

refactoring: Add property's type declaration

parent 5986a6dc
No related branches found
No related tags found
No related merge requests found
...@@ -28,27 +28,27 @@ class SendCustomer extends AbstractHelper ...@@ -28,27 +28,27 @@ class SendCustomer extends AbstractHelper
/** /**
* @var array * @var array
*/ */
protected $data; protected array $data;
/** /**
* @var StoreRepositoryInterface * @var StoreRepositoryInterface
*/ */
protected $storeRepository; protected StoreRepositoryInterface $storeRepository;
/** /**
* @var Filesystem * @var Filesystem
*/ */
protected $filesystem; protected Filesystem $filesystem;
/** /**
* @var DirectoryList * @var DirectoryList
*/ */
protected $directoryList; protected DirectoryList $directoryList;
/** /**
* @var Csv * @var Csv
*/ */
protected $csvProcessor; protected Csv $csvProcessor;
/** /**
* SendCustomer constructor. * SendCustomer constructor.
......
...@@ -22,7 +22,7 @@ class CustomerRegisterSuccess implements ObserverInterface ...@@ -22,7 +22,7 @@ class CustomerRegisterSuccess implements ObserverInterface
/** /**
* @var SendCustomer * @var SendCustomer
*/ */
protected $sendCustomer; protected SendCustomer $sendCustomer;
/** /**
* CustomerRegisterSuccess constructor. * CustomerRegisterSuccess constructor.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment