Make all non-inherited classes final

This commit is contained in:
2020-08-29 12:57:45 +02:00
committed by Stefan Rohde-Enslin
parent 237db1c58a
commit f0b39322ec
29 changed files with 29 additions and 35 deletions

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.