From fe8353b0bc7983deb256ed6c252849267e81adb2 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 3 Mar 2020 10:26:01 -0800 Subject: [PATCH] Drop abstract classes already defined by interface --- conditions/type/base.php | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/conditions/type/base.php b/conditions/type/base.php index 29730f3..2e5428d 100644 --- a/conditions/type/base.php +++ b/conditions/type/base.php @@ -76,30 +76,6 @@ public function __construct(ContainerInterface $container, \phpbb\db\driver\driv } } - /** - * Get condition type - * - * @return string Condition type - * @access public - */ - abstract public function get_condition_type(); - - /** - * Get condition field (this is the field to check) - * - * @return string Condition field name - * @access public - */ - abstract public function get_condition_field(); - - /** - * Get condition type name - * - * @return string Condition type name - * @access public - */ - abstract public function get_condition_type_name(); - /** * {@inheritdoc} */