for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the doyo/behat-coverage-extension project.
*
* (c) Anthonius Munthi <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Doyo\Behat\Coverage\Bridge\CodeCoverage\Session;
class LocalSession extends Session
{
public static function create($name)
$self = new static($name);
register_shutdown_function([$self, 'shutdown']);
return $self;
}
public function stop()
$this->data = $this->processor->stop();