for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Krenor\Prometheus\Contracts;
abstract class Binding
{
/**
* @var Repository
*/
protected $repository;
* @var string
protected $key;
* Binding constructor.
*
* @param Repository $repository
* @param string $key
public function __construct(Repository $repository, string $key)
$this->repository = $repository;
$this->key = $key;
}