for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Message;
use App\Entity\Property;
class DeletePhotos
{
private Property $property;
public function __construct(Property $property)
$this->property = $property;
}
public function getProperty(): Property
return $this->property;