Wallogit.com
2017 © Pedro Peláez
Instrumenting classes since 2018, (*1)
This package allows the instrumentation of classes using Componere, (*2)
namespace Componere {
class Instrumental {
public function __construct(string $target);
public function addOverride(string $method, \Closure $override);
public function addInvariant(\Closure $handler);
public function addPrecondition(string $method, \Closure $handler);
public function addPostcondition(string $method, \Closure $handler);
public function instrument();
}
}