Make all non-inherited classes final
This commit is contained in:
@ -5,7 +5,7 @@ declare(strict_types = 1);
|
||||
* Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
|
||||
* are not set public.
|
||||
*/
|
||||
class MDPageNotInAggregatedException extends Exception {
|
||||
final class MDPageNotInAggregatedException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
|
@ -5,7 +5,7 @@ declare(strict_types = 1);
|
||||
* Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
|
||||
* are not set public.
|
||||
*/
|
||||
class MDmainEntityNotPublicException extends Exception {
|
||||
final class MDmainEntityNotPublicException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
|
@ -4,7 +4,7 @@ declare(strict_types = 1);
|
||||
/**
|
||||
* Custom exception class for missing page parameters.
|
||||
*/
|
||||
class MDpageParameterMissingException extends Exception {
|
||||
final class MDpageParameterMissingException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
|
@ -4,7 +4,7 @@ declare(strict_types = 1);
|
||||
/**
|
||||
* Custom exception class for invalid page parameters.
|
||||
*/
|
||||
class MDpageParameterNotNumericException extends Exception {
|
||||
final class MDpageParameterNotNumericException extends Exception {
|
||||
|
||||
/**
|
||||
* Error message.
|
||||
|
Reference in New Issue
Block a user