Kahlan\Reporter\Coverage::specStart PHP Метод

specStart() публичный Метод

Callback called on a spec start.
public specStart ( object $spec = null )
$spec object The spec object of the whole spec.
    public function specStart($spec = null)
    {
        parent::specStart($spec);
        if (!$this->enabled()) {
            return;
        }
        $this->_collector->start();
    }