for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Linode\Api\Volumes\Commands;
use Linode\Api\Volumes\Volume;
use Zurbaev\ApiClient\Commands\ListResourcesCommand;
class ListVolumesCommand extends ListResourcesCommand
{
protected function itemsKey()
return 'volumes';
}
public function resourcePath()
public function resourceClass()
return Volume::class;