forked from fa/breadcrumb-the-shire
17 lines
367 B
PHP
17 lines
367 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Tests\Architecture;
|
||
|
|
|
||
|
|
trait AgentSystemContractSupport
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return array<string,mixed>
|
||
|
|
*/
|
||
|
|
private function decodeAgentJson(string $path): array
|
||
|
|
{
|
||
|
|
$decoded = json_decode($this->readProjectFile($path), true);
|
||
|
|
$this->assertIsArray($decoded, 'Invalid JSON in ' . $path);
|
||
|
|
return $decoded;
|
||
|
|
}
|
||
|
|
}
|