Remove superfluous newlines as per PHPCBF
This commit is contained in:
parent
0f3fd1637b
commit
4992011939
|
@ -250,5 +250,4 @@ final class MDErrorReporter {
|
|||
$this->_contact_mail_addr = $contact_mail_addr;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for invalid page parameters.
|
||||
*/
|
||||
final class MDAccessDeniedException extends MDExpectedException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDAccessDeniedException extends MDExpectedException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for errors loading configuration information.
|
||||
*/
|
||||
final class MDConfigCannotBeLoadedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDConfigCannotBeLoadedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for invalid page parameters.
|
||||
*/
|
||||
class MDExpectedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ class MDExpectedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for non-existing files.
|
||||
*/
|
||||
final class MDFileDoesNotExist extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -22,5 +21,4 @@ final class MDFileDoesNotExist extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for non-existing files.
|
||||
*/
|
||||
final class MDFileIsNotReadable extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -22,5 +21,4 @@ final class MDFileIsNotReadable extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for errors loading configuration information.
|
||||
*/
|
||||
final class MDInaccessiblePropertyException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDInaccessiblePropertyException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDInvalidEmail extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDInvalidEmail extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDInvalidUrl extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDInvalidUrl extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for non-existing files.
|
||||
*/
|
||||
final class MDOutputBufferNotStarted extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -22,5 +21,4 @@ final class MDOutputBufferNotStarted extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for errors loading configuration information.
|
||||
*/
|
||||
final class MDRequiredConfigNotSet extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDRequiredConfigNotSet extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDWrongCsrfTokenException extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDWrongCsrfTokenException extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
class MDgenericInvalidInputsException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ class MDgenericInvalidInputsException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDhttpFailedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDhttpFailedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* preset list of allowed values.
|
||||
*/
|
||||
final class MDmainEntityNotExistentException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDmainEntityNotExistentException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* preset list of allowed values.
|
||||
*/
|
||||
final class MDpageParameterNotFromListException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDpageParameterNotFromListException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDPageNotInAggregatedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDPageNotInAggregatedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDmainEntityNotPublicException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDmainEntityNotPublicException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for missing page parameters.
|
||||
*/
|
||||
final class MDpageParameterMissingException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDpageParameterMissingException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for invalid page parameters.
|
||||
*/
|
||||
final class MDpageParameterNotNumericException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -17,5 +16,4 @@ final class MDpageParameterNotNumericException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* linking table.
|
||||
*/
|
||||
final class MDDuplicateLinkException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -19,5 +18,4 @@ final class MDDuplicateLinkException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* preset list of allowed values.
|
||||
*/
|
||||
final class MDFileUploadNotAcceptedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDFileUploadNotAcceptedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidCurrency extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidCurrency extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidInputDate extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidInputDate extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidLengthUnit extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidLengthUnit extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidLicense extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidLicense extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidObjectPublicationBackground extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidObjectPublicationBackground extends MDgenericInvalidInputsE
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ declare(strict_types = 1);
|
|||
* accepted by museum-digital.
|
||||
*/
|
||||
final class MDInvalidWeightUnit extends MDgenericInvalidInputsException {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -25,5 +24,4 @@ final class MDInvalidWeightUnit extends MDgenericInvalidInputsException {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* preset list of allowed values.
|
||||
*/
|
||||
final class MDNoUpdateVarSetException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDNoUpdateVarSetException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -12,7 +12,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for wrongly used files.
|
||||
*/
|
||||
final class MDTooManyFilesUploadException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -24,5 +23,4 @@ final class MDTooManyFilesUploadException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -12,7 +12,6 @@ declare(strict_types = 1);
|
|||
* Custom exception class for wrongly used files.
|
||||
*/
|
||||
final class MDWrongFileType extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -24,5 +23,4 @@ final class MDWrongFileType extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDcouldNotSaveException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDcouldNotSaveException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDcouldNotSetPublic extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,6 +17,5 @@ final class MDcouldNotSetPublic extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,6 @@ declare(strict_types = 1);
|
|||
* are not set public.
|
||||
*/
|
||||
final class MDwriteAccessDeniedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
|
@ -18,5 +17,4 @@ final class MDwriteAccessDeniedException extends Exception {
|
|||
return $errorMsg;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user