for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the feedback project.
*
* (c) Florian Moser <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Entity;
use App\Entity\Base\BaseEntity;
use App\Entity\Traits\IdTrait;
class Semester extends BaseEntity
{
use IdTrait;
/**
* @var string
* @ORM\Column(type="text")
private $name;
* @return string
public function getName(): string
return $this->name;
}
* @param string $name
public function setName(string $name): void
$this->name = $name;