getPlatform() публичный Метод

Get a single platform data array
public getPlatform ( string $platform ) : Platform
$platform string
Результат Platform
Пример #1
0
 /**
  * tests getting an exiting platform
  *
  * @group data
  * @group sourcetest
  */
 public function testGetPlatform()
 {
     $this->object->addPlatformsFile($this->getPlatformsJsonFixture());
     self::assertInternalType('array', $this->object->getPlatforms());
     $platform = $this->object->getPlatform('Platform1');
     self::assertInstanceOf('\\Browscap\\Data\\Platform', $platform);
     $properties = $platform->getProperties();
     self::assertInternalType('array', $properties);
     self::assertArrayHasKey('Platform', $properties);
     self::assertSame('Platform1', $properties['Platform']);
 }