for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Linode\Api\Api;
abstract class ReadonlyLinodeApiResource extends LinodeApiResource
{
public function update(array $payload): bool
throw new \LogicException(get_class($this).' is a read-only resource.');
}
public function delete(): bool