PHP code example of nicoswd / symfony-rule-engine-bundle
1. Go to this page and download the library: Download nicoswd/symfony-rule-engine-bundle 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/ */
nicoswd / symfony-rule-engine-bundle example snippets
// in AppKernel::registerBundles()
$bundles = [
// ...
new nicoSWD\RuleBundle\RuleBundle(),
// ...
];
namespace AppBundle\Functions;
use nicoSWD\Rules\Core\CallableUserFunction;
use nicoSWD\Rules\Tokens\BaseToken;
use nicoSWD\Rules\Tokens\TokenArray;
class ArrayFilter implements CallableUserFunction
{
/**
* @param BaseToken $param
* @param BaseToken $param ...
* @return BaseToken
*/
public function call($param = null)
{
// Make sure this functions only works on arrays
if (!$param instanceof TokenArray) {
throw new \InvalidArgumentException();
}
return new TokenArray(
array_values(
array_filter(
$param->toArray()
)
)
);
}
public function getName(): string
{
return 'array_filter';
}
}