Medium
// src/Entity/Article.php
namespace App\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class Article
{
/**
* @Assert\NotBlank
*/
private $name;
}
use App\Entity\Article;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Validator\Validator\ValidatorInterface;
public function author(ValidatorInterface $validator)
{
$article = new Article();
$validation = $validator->validate($article);
}
How can i check that $article does not have errors?
Edit
Similar QuestionsMore questions about Symfony
7
What does the 'auto' password hasher do in Symfony?5
List the directories to which you must give write permissions on your web server.5
The class Foo exists is registered as a service only in the "dev" and "test" environment5
Extending the class `Symfony\Bundle\FrameworkBundle\Controller\AbstractController;` allows my controller to be declared as a service4
Events listeners are easier to reuse because the knowledge of the events is kept in the class rather than in the service definition.