mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-30 00:09:13 +02:00
cs
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* DesignPatternPHP
|
||||
*/
|
||||
|
||||
namespace DesignPatterns\ChainOfResponsibilities;
|
||||
|
||||
/**
|
||||
@@ -16,7 +12,9 @@ namespace DesignPatterns\ChainOfResponsibilities;
|
||||
*/
|
||||
abstract class Handler
|
||||
{
|
||||
|
||||
/**
|
||||
* @var null
|
||||
*/
|
||||
private $successor = null;
|
||||
|
||||
/**
|
||||
@@ -69,4 +67,4 @@ abstract class Handler
|
||||
* @return bool true if the request has been processed
|
||||
*/
|
||||
abstract protected function processing(Request $req);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user