Category.php 596 Bytes
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7 8 9
<?php

namespace App\Application\Sonata\ClassificationBundle\Entity;

use Sonata\ClassificationBundle\Entity\BaseCategory as BaseCategory;

/**
 * This file has been generated by the SonataEasyExtendsBundle.
 *
10
 * @see https://sonata-project.org/easy-extends
Julien Jorry committed
11 12
 *
 * References:
13
 * @see http://www.doctrine-project.org/projects/orm/2.0/docs/reference/working-with-objects/en
Julien Jorry committed
14 15 16 17
 */
class Category extends BaseCategory
{
    /**
18
     * @var int
Julien Jorry committed
19 20 21 22 23 24 25 26 27 28 29 30 31
     */
    protected $id;

    /**
     * Get id.
     *
     * @return int $id
     */
    public function getId()
    {
        return $this->id;
    }
}