Add missing function comment

This commit is contained in:
Joshua Ramon Enslin 2020-11-22 15:42:56 +01:00
parent 258781307d
commit c60932088d
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
3 changed files with 5 additions and 7 deletions

View File

@ -178,7 +178,7 @@ final class MD_JAIL {
* *
* @return void * @return void
*/ */
private function _apply_basedir_restriction():void { private function _apply_basedir_restriction():void {
if (empty($this->_open_basedir)) { if (empty($this->_open_basedir)) {
throw new MDJailSecurityOptionNotSetException("It has not been specified, which memory limit the script should hold. Set MD_JAIL->open_basedir = string."); throw new MDJailSecurityOptionNotSetException("It has not been specified, which memory limit the script should hold. Set MD_JAIL->open_basedir = string.");
@ -187,7 +187,7 @@ final class MD_JAIL {
throw new Exception('Failed to set open_basedir restrictions'); throw new Exception('Failed to set open_basedir restrictions');
} }
} }
/** /**
* Enforces security options previously set. * Enforces security options previously set.
@ -233,6 +233,9 @@ final class MD_JAIL {
} }
/**
* Destructor. Throws an exception if the settings have not been set.
*/
public function __destruct() { public function __destruct() {
if ($this->_status !== self::STATUS_SPECIFIED) { if ($this->_status !== self::STATUS_SPECIFIED) {
@ -255,6 +258,5 @@ final class MD_JAIL {
} }
} }
} }

View File

@ -9,7 +9,6 @@ declare(strict_types = 1);
* functions. * functions.
*/ */
final class MD_STD_IN { final class MD_STD_IN {
/** /**
* Validates and sanitizes input integers to be in line with MySQL * Validates and sanitizes input integers to be in line with MySQL
* autoincrement IDs. * autoincrement IDs.
@ -231,5 +230,4 @@ final class MD_STD_IN {
throw new MDgenericInvalidInputsException("ISBNs must be either 10 or 13 characters long."); throw new MDgenericInvalidInputsException("ISBNs must be either 10 or 13 characters long.");
} }
} }

View File

@ -5,7 +5,6 @@ declare(strict_types = 1);
* Exception thrown by MDJail if a required security option has not been set. * Exception thrown by MDJail if a required security option has not been set.
*/ */
final class MDJailSecurityOptionNotSetException extends Exception { final class MDJailSecurityOptionNotSetException extends Exception {
/** /**
* Error message. * Error message.
* *
@ -17,5 +16,4 @@ final class MDJailSecurityOptionNotSetException extends Exception {
return $errorMsg; return $errorMsg;
} }
} }