for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tleckie\DesignPatterns\State;
/**
* Class OffState
*
* @package Tleckie\DesignPatterns\State
* @author Teodoro Leckie Westberg <[email protected]>
*/
class OffState extends State
{
* @return OnState
public function turnOn(): OnState
return new OnState();
}