1
0
mirror of https://github.com/danog/loop.git synced 2024-12-03 09:47:48 +01:00
loop/test/Traits/BasicException.php
2022-12-24 14:36:39 +01:00

28 lines
534 B
PHP

<?php declare(strict_types=1);
/**
* Exception test trait.
*
* @author Daniil Gentili <daniil@daniil.it>
* @copyright 2016-2020 Daniil Gentili <daniil@daniil.it>
* @license https://opensource.org/licenses/MIT MIT
*/
namespace danog\Loop\Test\Traits;
use Generator;
trait BasicException
{
use Basic;
/**
* Loop implementation.
*
*/
public function loop(): Generator
{
$this->inited = true;
throw new \RuntimeException('Threw exception!');
$this->ran = true;
}
}