for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace KunicMarko\SonataAnnotationBundle\Annotation;
/**
* @Annotation
* @Target("PROPERTY")
*
* @author Marko Kunic <[email protected]>
*/
final class ParentAssociationMapping implements AnnotationInterface
{
public function __construct()
@trigger_error(
sprintf(
'The "%s" annotation is deprecated since 1.1, to be removed in 2.0. Use %s instead.',
self::class,
AddChild::class
),
E_USER_DEPRECATED
);
}