/home/techb158/ileadtechnology.com/SSM/vendor/symfony/polyfill-util
NameSizeModeActions
Binary.php4360644editdlrm
BinaryNoFuncOverload.php14490644editdlrm
BinaryOnFuncOverload.php16390644editdlrm
composer.json7520644editdlrm
LICENSE10650644editdlrm
README.md3740644editdlrm
TestListener.php10430644editdlrm
TestListenerForV5.php22050644editdlrm
TestListenerForV6.php21270644editdlrm
TestListenerForV7.php23020644editdlrm
TestListenerTrait.php50880644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/symfony/polyfill-util/BinaryNoFuncOverload.php (1449B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Util; /** * @author Nicolas Grekas * * @internal */ class BinaryNoFuncOverload { public static function strlen($s) { return \strlen($s); } public static function strpos($haystack, $needle, $offset = 0) { return strpos($haystack, $needle, $offset); } public static function strrpos($haystack, $needle, $offset = 0) { return strrpos($haystack, $needle, $offset); } public static function substr($string, $start, $length = PHP_INT_MAX) { return substr($string, $start, $length); } public static function stripos($s, $needle, $offset = 0) { return stripos($s, $needle, $offset); } public static function stristr($s, $needle, $part = false) { return stristr($s, $needle, $part); } public static function strrchr($s, $needle, $part = false) { return strrchr($s, $needle, $part); } public static function strripos($s, $needle, $offset = 0) { return strripos($s, $needle, $offset); } public static function strstr($s, $needle, $part = false) { return strstr($s, $needle, $part); } }