for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Created by PhpStorm.
* User: danchukas
* Date: 2017-07-18 08:46
*/
namespace DanchukAS\Mock\Type;
use DanchukAS\Mock\TypeMock;
* Class NullTypeMock
* @package DanchukAS\Mock\Type
class NullTypeMock extends TypeMock
{
* @return null
public static function getSample()
yield ["the only one" => null];
}