for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\Files\Command;
use PersonalGalaxy\Files\Entity\{
File\Identity,
Folder\Identity as Folder,
};
final class MoveFile
{
private $identity;
private $folder;
public function __construct(Identity $identity, Folder $folder)
$this->identity = $identity;
$this->folder = $folder;
}
public function identity(): Identity
return $this->identity;
public function folder(): Folder
return $this->folder;