20 lines
290 B
PHP
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 '';
|
|
}
|
|
}
|