Skip to content

Commit

Permalink
Merge pull request #169 from synolia/fix/repository-class
Browse files Browse the repository at this point in the history
fix #159  repository class usage inside entities
  • Loading branch information
oallain authored Oct 20, 2023
2 parents 40bfe8b + 5b64ed7 commit 5646609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Entity/Asset.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @ApiResource()
*
* @ORM\Entity(repositoryClass=\Synolia\SyliusAkeneoPlugin\Repository\AssetRepository::class)
* @ORM\Entity(repositoryClass="Synolia\SyliusAkeneoPlugin\Repository\AssetRepository")
*
* @ORM\Table(name="akeneo_assets")
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/CategoryConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Synolia\SyliusAkeneoPlugin\Repository\CategoryConfigurationRepository;

/**
* @ORM\Entity(repositoryClass="CategoryConfigurationRepository")
* @ORM\Entity(repositoryClass="Synolia\SyliusAkeneoPlugin\Repository\CategoryConfigurationRepository")
*
* @ORM\Table("akeneo_api_configuration_categories")
*/
Expand Down

0 comments on commit 5646609

Please sign in to comment.