Exemplo n.º 1
0
 /**
  * Create a new FolderObserver instance.
  *
  * @param MountManager              $manager
  * @param EventDispatcher           $events
  * @param CommandDispatcher         $commands
  * @param FileRepositoryInterface   $files
  * @param FolderRepositoryInterface $folders
  */
 public function __construct(MountManager $manager, EventDispatcher $events, CommandDispatcher $commands, FileRepositoryInterface $files, FolderRepositoryInterface $folders)
 {
     $this->files = $files;
     $this->folders = $folders;
     $this->manager = $manager;
     parent::__construct($events, $commands);
 }