Remove superfluous newlines as per PHPCBF
This commit is contained in:
@ -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;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user