JBZoo\Utils\Env::isPHP PHP Method

isPHP() public static method

Deprecation:
public static isPHP ( ) : boolean
return boolean
    public static function isPHP()
    {
        return Sys::isRealPHP();
    }

Usage Example

Example #1
0
 /**
  * @covers JBZoo\Utils\Env::isPHP
  * @uses   JBZoo\Utils\Env::isHHVM
  */
 public function testCanBeDetected2()
 {
     $this->assertInternalType('boolean', Env::isPHP());
 }