for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Desmond\functions\docs;
use Desmond\functions\Doc;
class LessThanEqualTo implements Doc
{
public function id()
return '<=';
}
public function synopsis()
return 'Checks that each consecutive number is greater than or equal to the previous one. 1 <= 2 = (<= 1 2)';
public function usage()
return '(<= Number...)';
public function examples()
return [
'(<= 1 2)',
'(<= 1 2 2 3 4 5)'
];