for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 01.10.2015 18:02
*
* @author Karsten J. Gerber <[email protected]>
*/
namespace PeekAndPoke\Component\Psi\Psi;
* IsNotNumericString check if the string contains an number
class IsNotNumericString extends IsNumericString
{
* @param mixed $input
* @return bool
public function __invoke($input)
return ! parent::__invoke($input);
}