コード例 #1
0
ファイル: Report.php プロジェクト: nochso/php-semver-checker
 /**
  * @param string                                $context
  * @param \PHPSemVerChecker\Operation\Operation $operation
  * @return $this
  */
 public function add($context, Operation $operation)
 {
     $level = $operation->getLevel();
     $this->differences[$context][$level][] = $operation;
     return $this;
 }