PHP code example of formal-bears / aop
1. Go to this page and download the library: Download formal-bears/aop library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
formal-bears / aop example snippets
// モジュールでの束縛
$this->bindInterceptor(
$this->matcher->subclassesOf(ResourceObject::class),
new IsHttpMethodMatcher(), // HTTPメソッドマッチャー
[FooInterceptor::class] // 束縛したいインターセプター
);
// リソースのメソッドのためのカスタムマッチャー
class IsHttpMethodMatcher extends EqualsToMatcher
{
public function __construct()
{
parent::__construct([
'onGet',
'onPost',
'onPut',
// ... (省略)
]);
}
}
// 上記 `IsHttpMethodMatcher` のスーパークラス。
// 同一かどうかのカスタムマッチャー。
use Ray\Aop\AbstractMatcher;
class EqualsToMatcher extends AbstractMatcher
{
/**
* @var array
*/
private $values;
/**
* @param string|array $values
*/
public function __construct($values)
{
parent::__construct();
$this->values = (array) $values;
}
/**
* {@inheritdoc}
*/
public function matchesClass(\ReflectionClass $class, array $arguments)
{
return in_array(strtolower($class->getName()), array_map('strtolower', $this->values));
}
/**
* {@inheritdoc}
*/
public function matchesMethod(\ReflectionMethod $method, array $arguments)
{
return in_array(strtolower($method->getShortName()), array_map('strtolower', $this->values));
}
}