get() public method

public get ( string $key ) : mixed
$key string
return mixed
コード例 #1
0
ファイル: CommandNameMatcher.php プロジェクト: mcrumm/phlack
 /**
  * @param CommandInterface $command
  *
  * @return bool
  */
 public function matches(CommandInterface $command)
 {
     return $this->getCommandName() === $command->get('command');
 }