for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ShouldPHP
*
* @author Gabriel Jacinto <[email protected]>
* @status dev
* @link https://github.com/GabrielJMJ/ShouldPHP
* @license MIT
*/
namespace Gabrieljmj\Should\Options;
class TypeHinting
{
const ARR = 1;
const CALL = 2;
const VARIADIC = 3;
const INSTANCE_OF = 4;
public static $class;
public static function anInstanceOf($class)
self::$class = $class;
return self::INSTANCE_OF;
}