for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Clarkeash\Doorman;
class Doorman
{
public function redeem($code, $email = null)
return (new Manager)->redeem($code, $email);
}
public function check($code, $email = null)
return (new Manager)->check($code, $email);
public function generate()
return new Generator;