for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kartenmacherei\RestFramework\Request\Method;
class OptionsRequestMethod extends AbstractRequestMethod
{
/**
* @return string
*/
public function asString(): string
return RequestMethod::OPTIONS;
}
* @return bool
public function isOptionsMethod(): bool
return true;