Skip to content

Commit e176c40

Browse files
committed
Merge branch 'develop'
2 parents 7d1a05b + cede145 commit e176c40

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Unit.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
namespace MaplePHP\Unitary;
55

66
use Exception;
7+
use MaplePHP\Blunder\Handlers\CliHandler;
8+
use MaplePHP\Blunder\Run;
79
use MaplePHP\Prompts\Command;
810
use RecursiveDirectoryIterator;
911
use RecursiveIteratorIterator;
@@ -90,6 +92,9 @@ public function add(string $message, callable $callback): void
9092
*/
9193
public function execute(): void
9294
{
95+
$run = new Run(new CliHandler());
96+
$run->load();
97+
9398
if(!is_null($this->title) && (!$this->quite || count($this->error) > 0)) {
9499
$this->command->title("\n--------- $this->title ---------");
95100
}

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "maplephp/unitary",
33
"type": "library",
4-
"version": "v1.0.6",
4+
"version": "v1.0.7",
55
"description": "PHP Unitary is a lightweight PHP testing library designed to simplify the process of writing and running tests for your PHP code.",
66
"keywords": [
77
"php",
@@ -24,6 +24,7 @@
2424
],
2525
"require": {
2626
"php": ">=8.0",
27+
"maplephp/blunder": "^1.0",
2728
"maplephp/dto": "^1.0",
2829
"maplephp/http": "^1.0",
2930
"maplephp/validate": "^1.0",

0 commit comments

Comments
 (0)