for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Parking\Domain;
class Car
{
/**
* @var
*/
public $plate;
public $colour;
public function __construct($plate, $colour)
$this->plate = $plate;
$this->colour = $colour;
}