mirror of
https://github.com/wallabag/wallabag.git
synced 2025-04-15 14:34:06 +00:00
Migrate to Gedmo attributes
This commit is contained in:
parent
2a60d8473d
commit
a1440dffda
3 changed files with 5 additions and 2 deletions
|
@ -62,6 +62,9 @@ $config
|
|||
'symfony/web-profiler-bundle',
|
||||
'symfony/web-server-bundle',
|
||||
], [ErrorType::DEV_DEPENDENCY_IN_PROD])
|
||||
->ignoreErrorsOnPackages([
|
||||
'gedmo/doctrine-extensions',
|
||||
], [ErrorType::SHADOW_DEPENDENCY])
|
||||
;
|
||||
|
||||
return $config;
|
||||
|
|
|
@ -15,7 +15,7 @@ return RectorConfig::configure()
|
|||
])
|
||||
->withRootFiles()
|
||||
->withImportNames(importShortClasses: false)
|
||||
->withAttributesSets(symfony: true, doctrine: true)
|
||||
->withAttributesSets(symfony: true, doctrine: true, gedmo: true)
|
||||
->withConfiguredRule(ClassPropertyAssignToConstructorPromotionRector::class, [
|
||||
'inline_public' => true,
|
||||
])
|
||||
|
|
|
@ -41,9 +41,9 @@ class Tag implements \Stringable
|
|||
|
||||
/**
|
||||
* @Expose
|
||||
* @Gedmo\Slug(fields={"label"}, prefix="t:")
|
||||
*/
|
||||
#[ORM\Column(length: 128, unique: true)]
|
||||
#[Gedmo\Slug(fields: ['label'], prefix: 't:')]
|
||||
private $slug;
|
||||
|
||||
#[ORM\ManyToMany(targetEntity: Entry::class, mappedBy: 'tags', cascade: ['persist'])]
|
||||
|
|
Loading…
Reference in a new issue