php – 可选的抽象方法

我目前有一个抽象类,我将扩展到其他控制器.我在抽象类中有一个抽象函数,它接受值并将其放在__construct中.

abstract class Controller extends BaseController {
    abstract public function something();

    public function __construct(Request $request) {
        if (!is_null($this->something())){
            $this->global_constructor_usse = $this->something();
        }
    }
}

我的问题是在不需要这个抽象函数的控制器上,我不得不放在空函数中.

class ControllerExample extends Controller {
  public function something(){
      return 'somethinghere';
  }
}

有没有使抽象函数可选或具有默认值?

class EmptyControllerExample extends Controller {
  public function something(){}
}

或者最好的方法是什么?

最佳答案 不可能有一个可选的抽象方法,因为PHP中暗示所有抽象方法都必须具有实现.

可选的抽象方法有合理的用例,是:事件处理程序,元数据描述符等.不幸的是,你需要使用带有空体的常规非抽象方法,并在PHPDoc中指出除非扩展,否则它们将不执行任何操作.

但要小心:通过向孩子传播课堂责任感,这很快就会变成代码气味.如果您正在处理通用事件,则可以查看Laravel’s own event systemObserver pattern.

点赞