Files
MageSail/Magesail/Test/Stubs/Magento/Framework/Shell.php
T
snxraven bbd83659a7
CI / php (push) Successful in 2m56s
tests
2026-03-21 03:49:54 -05:00

20 lines
290 B
PHP

<?php
declare(strict_types=1);
namespace Magento\Framework;
/**
* Minimal test double for {@see Shell}.
*/
class Shell
{
/**
* @param string|array<int|string, string|int> $args
*/
public function execute($command, $args = []): string
{
return '';
}
}