123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
-
- namespace Sluggable\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
-
- class Position
- {
-
-
- private $id;
-
-
-
- private $prop;
-
-
-
- private $title;
-
-
-
- private $code;
-
-
-
- private $other;
-
-
-
- private $slug;
- }
|