for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Highlighter
*1
* Copyright (C) 2015, Some right reserved.
*
* @author Kacper "Kadet" Donat <[email protected]>
* Contact with author:
* Xmpp: [email protected]
* E-mail: [email protected]
* From Kadet with love.
*/
namespace Kadet\Highlighter\Utils;
class Helper
{
public static function cmp($a, $b)
return ($a < $b) ? -1 : (int)($a > $b);
}