Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<?php | |
/* | |
* This file is part of the Tolerance package. | |
* | |
* (c) Samuel ROZE <samuel.roze@gmail.com> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ | |
namespace Tolerance\Metrics\Publisher; | |
use Tolerance\Metrics\Metric; | |
interface MetricPublisher | |
{ | |
/** | |
* @param Metric[] $metrics | |
*/ | |
public function publish(array $metrics); | |
} |