for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sandbox\Demos;
use Redbox\Hooks\Filters;
/*
* Please note: This use statement is actualy required.
* Without this use statement Filters::registerFilterObject
* will not work.
*/
use Redbox\Hooks\Annotations\Filter;
require 'autoload.php';
class Test
{
/**
* This function is going to be called second
* It has priority 1.
*
* @Filter("prepend_at", priority=1)
* @param string $text
* @return string
public function prependAt($text = '')
return '@' . $text;
}
* This is the first function going to be called.
* It has priority 0.
* @Filter("prepend_at", priority=0)
public function prependAtSecond($text = '')
return '!!' . $text;
Filters::registerFilterObject(new Test());
* The result should be:
* Result: @!!Hello world
echo "Result: ".Filters::applyFilter('prepend_at', 'Hello world');
* This is not required in your code. I have to add this to reset my unit tests.
Filters::removeAllFilters('prepend_at');