Browscap\Data\Engine::getProperties PHP Method

getProperties() public method

public getProperties ( ) : string[]
return string[]
    public function getProperties()
    {
        return $this->properties;
    }

Usage Example

コード例 #1
0
ファイル: EngineTest.php プロジェクト: parisholley/browscap
 /**
  * tests setter and getter for the engine properties
  *
  * @group data
  * @group sourcetest
  */
 public function testGetProperties()
 {
     $properties = array('abc' => 'def');
     $object = new Engine($properties);
     self::assertSame($properties, $object->getProperties());
 }
All Usage Examples Of Browscap\Data\Engine::getProperties