The docs show a use statement use DH\AuditorBundle\Annotation as Audit;, but it appears there is no such Annotation available. I had to comb through past annotation issues referencing a related pull to discover that it should be use DH\Auditor\Provider\Doctrine\Auditing\Annotation as Audit; which then allowed my schema to update and the auditor to function as expected.
Should it be the former for AuditorBundle, or the latter? I used composer require damienharper/auditor-bundle with Symfony Flex. Thanks.
The docs show a use statement
use DH\AuditorBundle\Annotation as Audit;
, but it appears there is no such Annotation available. I had to comb through past annotation issues referencing a related pull to discover that it should beuse DH\Auditor\Provider\Doctrine\Auditing\Annotation as Audit;
which then allowed my schema to update and the auditor to function as expected.Should it be the former for AuditorBundle, or the latter? I used
composer require damienharper/auditor-bundle
with Symfony Flex. Thanks.