Add final keyword to both classes

This commit is contained in:
Joshua Ramon Enslin 2020-08-29 17:22:16 +02:00 committed by Stefan Rohde-Enslin
parent 7d4a740f8f
commit 6fe367ead7
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ declare(strict_types = 1);
* Standard class providing overrides of default PHP functions as static * Standard class providing overrides of default PHP functions as static
* functions. * functions.
*/ */
class MD_STD { final class MD_STD {
/** /**
* Wrapper around file_get_contents, that provides catches errors on it and returns * Wrapper around file_get_contents, that provides catches errors on it and returns

View File

@ -8,7 +8,7 @@ declare(strict_types = 1);
* Standard class providing overrides of default PHP functions as static * Standard class providing overrides of default PHP functions as static
* functions. * functions.
*/ */
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