Пример #1
0
 /**
  * Sets the deprecated version since values. The deprecated version number
  * must be the one of php, not the one of the specific library this element
  * relates to.
  * 
  * @param string|int $value
  * @throws PhpLibraryCheckerException
  */
 public function setDeprecatedSincePhpVersion($value)
 {
     $this->_phpVersionHistory->setDeprecatedSinceVersion($value);
 }
Пример #2
0
 /**
  * Sets the deprecated version since values. The removed version number
  * must be the one of the library this function is in, not the one of php.
  *
  * @param string|int $value
  * @throws PhpLibraryCheckerException
  */
 public function setDeprecatedSinceLibraryVersion($value)
 {
     $this->_libraryVersionHistory->setDeprecatedSinceVersion($value);
 }