for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GGGGino\WarehousePath\Entity;
/**
* Class Corridor
* @package GGGGino\WarehousePath\Entity
*/
class Corridor extends PlaceType
{
* @inheritdoc
public function __construct($name = "")
$this->originalWeight = 2;
parent::__construct($name);
}
* Describe if the place will be walkable or not
*
* @return boolean
public function isWalkable()
return true;