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
/**
* @var array
*/
protected $data;
protected array $data;
/**
* @var StoreRepositoryInterface
*/
protected $storeRepository;
protected StoreRepositoryInterface $storeRepository;
/**
* @var Filesystem
*/
protected $filesystem;
protected Filesystem $filesystem;
/**
* @var DirectoryList
*/
protected $directoryList;
protected DirectoryList $directoryList;
/**
* @var Csv
*/
protected $csvProcessor;
protected Csv $csvProcessor;
/**
* SendCustomer constructor.
......
......@@ -22,7 +22,7 @@ class CustomerRegisterSuccess implements ObserverInterface
/**
* @var SendCustomer
*/
protected $sendCustomer;
protected SendCustomer $sendCustomer;
/**
* 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