for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace W2w\Lib\Apie\Plugins\StaticConfig;
use W2w\Lib\Apie\PluginInterfaces\ResourceProviderInterface;
class StaticResourcesPlugin implements ResourceProviderInterface
{
private $resources;
/**
* @param array $resources
*/
public function __construct(array $resources)
$this->resources = $resources;
}
* Returns a list of Api resources.
*
* @return string[]
public function getResources(): array
return $this->resources;