for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\DataObjects\Tests\Fixtures\Dto;
use ByTIC\DataObjects\BaseDto;
/**
* Class ObjectWithGetSet
* @package ByTIC\DataObjects\Tests\Fixtures\Dto
*
* @property string $name
*/
class ObjectWithGetSet extends BaseDto
{
protected $title;
* @return mixed
public function getName()
return $this->name;
}
* @param $value
public function setName($value)
return $this->name = $value;
public function getTitle()
return $this->title;
* @param mixed $title
public function setTitle($title): void
$this->title = $title;