for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Igorsgm\Ghost\Models\Resources;
use Igorsgm\Ghost\Models\BaseModel;
abstract class BaseResource extends BaseModel
{
/**
* The API Resource name on Ghost API
*/
protected string $resourceName = '';
* @return string
public function getResourceName()
return $this->resourceName;
}