phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@ -50,9 +50,6 @@ class SignText{
* Parses sign lines from the given string blob.
* TODO: add a strict mode for this
*
* @param string $blob
*
* @return SignText
* @throws \InvalidArgumentException if the text is not valid UTF-8
*/
public static function fromBlob(string $blob) : SignText{
@ -101,9 +98,6 @@ class SignText{
/**
* Returns the sign line at the given offset.
*
* @param int $index
*
* @return string
* @throws \InvalidArgumentException
*/
public function getLine(int $index) : string{
@ -114,9 +108,6 @@ class SignText{
/**
* Sets the line at the given offset.
*
* @param int $index
* @param string $line
*
* @throws \InvalidArgumentException if the text is not valid UTF-8
* @throws \InvalidArgumentException if the text contains a newline
*/