Subversion Repositories oidplus

Rev

Rev 1086 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1086 Rev 1116
Line 23... Line 23...
23
\defined('INSIDE_OIDPLUS') or die;
23
\defined('INSIDE_OIDPLUS') or die;
24
// phpcs:enable PSR1.Files.SideEffects
24
// phpcs:enable PSR1.Files.SideEffects
25
 
25
 
26
abstract class OIDplusObjectTypePlugin extends OIDplusPlugin {
26
abstract class OIDplusObjectTypePlugin extends OIDplusPlugin {
27
 
27
 
-
 
28
        /**
-
 
29
         * @return string
-
 
30
         */
28
        public static abstract function getObjectTypeClassName();
31
        public static abstract function getObjectTypeClassName(): string;
29
 
32
 
-
 
33
        /**
-
 
34
         * @param string $static_node_id
-
 
35
         * @param bool $throw_exception
-
 
36
         * @return string
-
 
37
         */
30
        public static function prefilterQuery($static_node_id, $throw_exception) {
38
        public static function prefilterQuery(string $static_node_id, bool $throw_exception): string {
31
                return $static_node_id;
39
                return $static_node_id;
32
        }
40
        }
33
 
41
 
34
}
42
}
35
 
43