for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Traits;
use Chamilo\CoreBundle\Entity\Session;
trait SessionTrait
{
protected $session;
/**
* @return Session
*/
public function getSession()
return $this->session;
}
public function setSession(Session $session): self
$this->session = $session;
return $this;