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

public isTokenFollowedBy ( integer $tokenPosition, string $stringValue ) : boolean
$tokenPosition integer
$stringValue string
Результат boolean
Пример #1
0
 /**
  * @dataProvider isTokenFollowedByProvider
  */
 public function testIsTokenFollowedBy($tokens, $position, $value, $result)
 {
     $collection = new TokenCollection($tokens);
     $this->assertSame($result, $collection->isTokenFollowedBy($position, $value));
 }