for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Baethon\Phln;
class Duck
{
public static function isFunctor($object): bool
return method_exists($object, 'map');
}