for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipboxfactory/craft-rest/blob/master/LICENSE
* @link https://github.com/flipboxfactory/craft-rest
*/
namespace flipbox\craft\rest;
* @inheritdoc
*
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class Request extends \craft\web\Request
{
public function getIsRestRequest(): bool
return true;
}
public function getIsSiteRequest(): bool
return false;