Skip to content

Commit

Permalink
PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Dec 27, 2023
1 parent 5c329e4 commit a6547d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Auditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

/**
* @see \DH\Auditor\Tests\AuditorTest
* @see Tests\AuditorTest
*/
class Auditor
{
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Symfony\Component\OptionsResolver\OptionsResolver;

/**
* @see \DH\Auditor\Tests\ConfigurationTest
* @see Tests\ConfigurationTest
*/
class Configuration
{
Expand Down
12 changes: 6 additions & 6 deletions src/Provider/Doctrine/Auditing/Transaction/AuditTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ trait AuditTrait
*
* @return mixed
*
* @throws \DH\Auditor\Exception\MappingException
* @throws MappingException
* @throws \Doctrine\DBAL\Exception
* @throws \Doctrine\ORM\Mapping\MappingException
* @throws ORMMappingException
*/
private function id(EntityManagerInterface $entityManager, object $entity)
{
Expand Down Expand Up @@ -134,10 +134,10 @@ private function value(EntityManagerInterface $entityManager, Type $type, $value
/**
* Computes a usable diff.
*
* @throws \DH\Auditor\Exception\MappingException
* @throws MappingException
* @throws \Doctrine\DBAL\Exception
* @throws \Doctrine\DBAL\Types\ConversionException
* @throws \Doctrine\ORM\Mapping\MappingException
* @throws ORMMappingException
*/
private function diff(EntityManagerInterface $entityManager, object $entity, array $changeset): array
{
Expand Down Expand Up @@ -187,9 +187,9 @@ private function diff(EntityManagerInterface $entityManager, object $entity, arr
/**
* Returns an array describing an entity.
*
* @throws \DH\Auditor\Exception\MappingException
* @throws MappingException
* @throws \Doctrine\DBAL\Exception
* @throws \Doctrine\ORM\Mapping\MappingException
* @throws ORMMappingException
*/
private function summarize(EntityManagerInterface $entityManager, ?object $entity = null, array $extra = []): ?array
{
Expand Down

0 comments on commit a6547d4

Please sign in to comment.