Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Dingo\Api;use Dingo\Api\Auth\Auth;use Illuminate\Support\Str;use Dingo\Api..
Decoded Output download
<?php namespace Dingo\Api;use Dingo\Api\Auth\Auth;use Illuminate\Support\Str;use Dingo\Api\Routing\Router;use Dingo\Api\Http\InternalRequest;use Illuminate\Container\Container;use Illuminate\Filesystem\Filesystem;use Symfony\Component\HttpFoundation\Cookie;use Dingo\Api\Exception\InternalHttpException;use Symfony\Component\HttpFoundation\File\UploadedFile;use Illuminate\Support\Facades\Request as RequestFacade;use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;class tgvr25{/**
* Illuminate container instance.
*
* @var \Illuminate\Container\Container
*/ protected $kydl26;/**
* Illuminate filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/ protected $fljg27;/**
* Router instance.
*
* @var \Dingo\Api\Routing\Router
*/ protected $mbca28;/**
* Auth instance.
*
* @var \Dingo\Api\Auth\Auth
*/ protected $crhu29;/**
* Internal request stack.
*
* @var array
*/ protected $dsxl2a=[];/**
* Internal route stack.
*
* @var array
*/ protected $vrdg2b=[];/**
* Version for the request.
*
* @var string
*/ protected $punn2c;/**
* Request headers.
*
* @var array
*/ protected $hsok2d=[];/**
* Request cookies.
*
* @var array
*/ protected $kajs2e=[];/**
* Request parameters.
*
* @var array
*/ protected $gxaz2f=[];/**
* Request raw content.
*
* @var string
*/ protected $hevb30;/**
* Request uploaded files.
*
* @var array
*/ protected $ungd31=[];/**
* Domain for the request.
*
* @var string
*/ protected $seyn32;/**
* Indicates whether the returned response is the raw response object.
*
* @var bool
*/ protected $sjab33=false;/**
* Indicates whether authentication is persisted.
*
* @var bool
*/ protected $jfbm34=true;/**
* API subtype.
*
* @var string
*/ protected $xdcf35;/**
* API standards tree.
*
* @var string
*/ protected $peiu36;/**
* API prefix.
*
* @var string
*/ protected $chns37;/**
* Default version.
*
* @var string
*/ protected $wubq38;/**
* Default domain.
*
* @var string
*/ protected $liun39;/**
* Default format.
*
* @var string
*/ protected $hrnc3a;/**
* Create a new dispatcher instance.
*
* @param \Illuminate\Container\Container $container
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Dingo\Api\Routing\Router $router
* @param \Dingo\Api\Auth\Auth $auth
*
* @return void
*/ public function twax0(Container $kydl26,Filesystem $fljg27,Router $mbca28,Auth $crhu29){$this->$wsro3b=$kydl26;$this->$dthi3c=$fljg27;$this->$gawi3d=$mbca28;$this->$qhmp3e=$crhu29;$this->ygrn1();}/**
* Setup the request stack by grabbing the initial request.
*
* @return void
*/ protected function ygrn1(){$this->$tfih3f[]=$this->$wsro3b[base64_decode('cmVxdWVzdA==')];}/**
* Attach files to be uploaded.
*
* @param array $files
*
* @return \Dingo\Api\Dispatcher
*/ public function xxci2(array$fljg27){foreach($fljg27 as $izrw40=>$qglj41){if(is_array($qglj41)){$qglj41=new zbhk42($qglj41[base64_decode('cGF0aA==')],basename($qglj41[base64_decode('cGF0aA==')]),$qglj41[base64_decode('bWltZQ==')],$qglj41[base64_decode('c2l6ZQ==')]);}elseif(is_string($qglj41)){$xrwc43=finfo_open(FILEINFO_MIME_TYPE);$qglj41=new zbhk42($qglj41,basename($qglj41),finfo_file($xrwc43,$qglj41),$this->$dthi3c->lcym44($qglj41));}elseif(!$qglj41 instanceof UploadedFile){continue;}$this->$cnqq45[$izrw40]=$qglj41;}return $this;}/**
* Internal request will be authenticated as the given user.
*
* @param mixed $user
*
* @return \Dingo\Api\Dispatcher
*/ public function fwyc3($iuyw46){$this->$qhmp3e->iitq47($iuyw46);return $this;}/**
* Send a JSON payload in the request body.
*
* @param string|array $content
*
* @return \Dingo\Api\Dispatcher
*/ public function folq4($hevb30){if(is_array($hevb30)){$hevb30=json_encode($hevb30);}$this->$yhgc48=$hevb30;return $this->snoya(base64_decode('Q29udGVudC1UeXBl'),base64_decode('YXBwbGljYXRpb24vanNvbg=='));}/**
* Sets the domain to be used for the request.
*
* @param string $domain
*
* @return \Dingo\Api\Dispatcher
*/ public function tufm5($seyn32){$this->$jcvd49=$seyn32;return $this;}/**
* Return the raw response object once request is dispatched.
*
* @return \Dingo\Api\Dispatcher
*/ public function fbri6(){$this->$sulj4a=true;return $this;}/**
* Only authenticate with the given user for a single request.
*
* @return \Dingo\Api\Dispatcher
*/ public function zvtp7(){$this->$jhqt4b=false;return $this;}/**
* Set the version of the API for the next request.
*
* @param string $version
*
* @return \Dingo\Api\Dispatcher
*/ public function wuzc8($punn2c){$this->$cadu4c=$punn2c;return $this;}/**
* Set the parameters to be sent on the next API request.
*
* @param string|array $parameters
*
* @return \Dingo\Api\Dispatcher
*/ public function rkrm9($gxaz2f){$this->$jpek4d=array_merge($this->$jpek4d,is_array($gxaz2f)?$gxaz2f:func_get_args());return $this;}/**
* Set a header to be sent on the next API request.
*
* @param string $key
* @param string $value
*
* @return \Dingo\Api\Dispatcher
*/ public function snoya($izrw40,$efpq4e){$this->$gvyo4f[$izrw40]=$efpq4e;return $this;}/**
* Set a cookie to be sent on the next API request.
*
* @param \Symfony\Component\HttpFoundation\Cookie $cookie
*
* @return \Dingo\Api\Dispatcher
*/ public function lglgb(Cookie $dyip50){$this->$gbfo51[]=$dyip50;return $this;}/**
* Perform API GET request.
*
* @param string $uri
* @param string|array $parameters
*
* @return mixed
*/ public function xsrrc($rsae52,$gxaz2f=[]){return $this->urjo11(base64_decode('Z2V0'),$rsae52,$gxaz2f);}/**
* Perform API POST request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function thand($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cG9zdA=='),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API PUT request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function gjyse($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cHV0'),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API PATCH request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function dcqsf($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cGF0Y2g='),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API DELETE request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function xuoy10($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('ZGVsZXRl'),$rsae52,$gxaz2f,$hevb30);}/**
* Queue up and dispatch a new request.
*
* @param string $verb
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ protected function urjo11($msfa53,$rsae52,$gxaz2f,$hevb30=''){if(!empty($hevb30)){$this->$yhgc48=$hevb30;}if(end($this->$tfih3f)!=$this->$wsro3b[base64_decode('cmVxdWVzdA==')]){$this->$tfih3f[]=$this->$wsro3b[base64_decode('cmVxdWVzdA==')];}$this->$tfih3f[]=$rfgq54=$this->esia12($msfa53,$rsae52,$gxaz2f);return $this->gatu15($rfgq54);}/**
* Create a new internal request from an HTTP verb and URI.
*
* @param string $verb
* @param string $uri
* @param string|array $parameters
*
* @return \Dingo\Api\Http\InternalRequest
*/ protected function esia12($msfa53,$rsae52,$gxaz2f){$gxaz2f=array_merge($this->$jpek4d,(array)$gxaz2f);$rsae52=$this->wjmb13($rsae52);$dowz55=$this->zxqd19()->rlrz56();if((!parse_url($rsae52,PHP_URL_SCHEME))&&parse_url($dowz55)!==false){$rsae52=rtrim($dowz55,base64_decode('Lw==')).base64_decode('Lw==').ltrim($rsae52,base64_decode('Lw=='));}$rfgq54=InternalRequest::pevt57($rsae52,$msfa53,$gxaz2f,$this->$gbfo51,$this->$cnqq45,$this->$wsro3b[base64_decode('cmVxdWVzdA==')]->$vcbe58->sxwi59(),$this->$yhgc48);$rfgq54->$gvyo4f->mopk5a(base64_decode('aG9zdA=='),$this->fpuo1a());foreach($this->$gvyo4f as $txzu5b=>$efpq4e){$rfgq54->$gvyo4f->mopk5a($txzu5b,$efpq4e);}$rfgq54->$gvyo4f->mopk5a(base64_decode('YWNjZXB0'),$this->jjjp14());return $rfgq54;}/**
* Add the prefix to the URI.
*
* @param string $uri
*
* @return string
*/ protected function wjmb13($rsae52){if(!isset($this->$ivdp5c)){return $rsae52;}$rsae52=trim($rsae52,base64_decode('Lw=='));if(Str::sxsj5d($rsae52,$this->$ivdp5c)){return $rsae52;}return rtrim(base64_decode('Lw==').trim($this->$ivdp5c,base64_decode('Lw==')).base64_decode('Lw==').$rsae52,base64_decode('Lw=='));}/**
* Build the "Accept" header.
*
* @return string
*/ protected function jjjp14(){return sprintf(base64_decode('YXBwbGljYXRpb24vJXMuJXMuJXMrJXM='),$this->krmu1f(),$this->zncf1d(),$this->zvfj1b(),$this->ednk1c());}/**
* Attempt to dispatch an internal request.
*
* @param \Dingo\Api\Http\InternalRequest $request
*
* @throws \Exception|\Symfony\Component\HttpKernel\Exception\HttpExceptionInterface
*
* @return mixed
*/ protected function gatu15(InternalRequest $rfgq54){$this->$razs5e[]=$this->$gawi3d->uphz5f();$this->eomi18();try{$this->$wsro3b->wdca60(base64_decode('cmVxdWVzdA=='),$rfgq54);$dvpe61=$this->$gawi3d->gatu15($rfgq54);if(!$dvpe61->osps62()&&!$dvpe61->ujrf63()){throw new uaxb64($dvpe61);}if(!$this->$sulj4a){$dvpe61=$dvpe61->lvsd65();}}catch(HttpExceptionInterface $tuig66){$this->yjmq16();throw $tuig66;}$this->yjmq16();return $dvpe61;}/**
* Refresh the request stack.
*
* This is done by resetting the authentication, popping
* the last request from the stack, replacing the input,
* and resetting the version and parameters.
*
* @return void
*/ protected function yjmq16(){if(!$this->$jhqt4b){$this->$qhmp3e->iitq47(null);$this->$jhqt4b=true;}if($gfit67=array_pop($this->$razs5e)){$this->$gawi3d->bday68($gfit67);}$this->lkbe17();$this->eomi18();$this->$sulj4a=false;$this->$cadu4c=$this->$jcvd49=$this->$yhgc48=null;$this->$jpek4d=$this->$cnqq45=[];}/**
* Replace the request instance with the previous request instance.
*
* @return void
*/ protected function lkbe17(){array_pop($this->$tfih3f);$this->$wsro3b->wdca60(base64_decode('cmVxdWVzdA=='),end($this->$tfih3f));}/**
* Clear the cached facade instance.
*
* @return void
*/ protected function eomi18(){RequestFacade::mtqc69(base64_decode('cmVxdWVzdA=='));}/**
* Get the root request instance.
*
* @return \Illuminate\Http\Request
*/ protected function zxqd19(){return reset($this->$tfih3f);}/**
* Get the domain.
*
* @return string
*/ public function fpuo1a(){return $this->$jcvd49?:$this->$wtob6a;}/**
* Get the version.
*
* @return string
*/ public function zvfj1b(){return $this->$cadu4c?:$this->$rtdo6b;}/**
* Get the format.
*
* @return string
*/ public function ednk1c(){return $this->$ayrz6c;}/**
* Get the subtype.
*
* @return string
*/ public function zncf1d(){return $this->$tumu6d;}/**
* Set the subtype.
*
* @param string $subtype
*
* @return void
*/ public function aock1e($xdcf35){$this->$tumu6d=$xdcf35;}/**
* Get the standards tree.
*
* @return string
*/ public function krmu1f(){return $this->$wbcw6e;}/**
* Set the standards tree.
*
* @param string $standardsTree
*
* @return void
*/ public function vbmr20($peiu36){$this->$wbcw6e=$peiu36;}/**
* Set the prefix.
*
* @param string $prefix
*
* @return void
*/ public function sqke21($chns37){$this->$ivdp5c=$chns37;}/**
* Set the default version.
*
* @param string $version
*
* @return void
*/ public function qnqf22($punn2c){$this->$rtdo6b=$punn2c;}/**
* Set the default domain.
*
* @param string $domain
*
* @return void
*/ public function lopr23($seyn32){$this->$wtob6a=$seyn32;}/**
* Set the default format.
*
* @param string $format
*
* @return void
*/ public function sepb24($sqlh6f){$this->$ayrz6c=$sqlh6f;}}?>
Did this file decode correctly?
Original Code
<?php namespace Dingo\Api;use Dingo\Api\Auth\Auth;use Illuminate\Support\Str;use Dingo\Api\Routing\Router;use Dingo\Api\Http\InternalRequest;use Illuminate\Container\Container;use Illuminate\Filesystem\Filesystem;use Symfony\Component\HttpFoundation\Cookie;use Dingo\Api\Exception\InternalHttpException;use Symfony\Component\HttpFoundation\File\UploadedFile;use Illuminate\Support\Facades\Request as RequestFacade;use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;class tgvr25{/**
* Illuminate container instance.
*
* @var \Illuminate\Container\Container
*/ protected $kydl26;/**
* Illuminate filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/ protected $fljg27;/**
* Router instance.
*
* @var \Dingo\Api\Routing\Router
*/ protected $mbca28;/**
* Auth instance.
*
* @var \Dingo\Api\Auth\Auth
*/ protected $crhu29;/**
* Internal request stack.
*
* @var array
*/ protected $dsxl2a=[];/**
* Internal route stack.
*
* @var array
*/ protected $vrdg2b=[];/**
* Version for the request.
*
* @var string
*/ protected $punn2c;/**
* Request headers.
*
* @var array
*/ protected $hsok2d=[];/**
* Request cookies.
*
* @var array
*/ protected $kajs2e=[];/**
* Request parameters.
*
* @var array
*/ protected $gxaz2f=[];/**
* Request raw content.
*
* @var string
*/ protected $hevb30;/**
* Request uploaded files.
*
* @var array
*/ protected $ungd31=[];/**
* Domain for the request.
*
* @var string
*/ protected $seyn32;/**
* Indicates whether the returned response is the raw response object.
*
* @var bool
*/ protected $sjab33=false;/**
* Indicates whether authentication is persisted.
*
* @var bool
*/ protected $jfbm34=true;/**
* API subtype.
*
* @var string
*/ protected $xdcf35;/**
* API standards tree.
*
* @var string
*/ protected $peiu36;/**
* API prefix.
*
* @var string
*/ protected $chns37;/**
* Default version.
*
* @var string
*/ protected $wubq38;/**
* Default domain.
*
* @var string
*/ protected $liun39;/**
* Default format.
*
* @var string
*/ protected $hrnc3a;/**
* Create a new dispatcher instance.
*
* @param \Illuminate\Container\Container $container
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Dingo\Api\Routing\Router $router
* @param \Dingo\Api\Auth\Auth $auth
*
* @return void
*/ public function twax0(Container $kydl26,Filesystem $fljg27,Router $mbca28,Auth $crhu29){$this->$wsro3b=$kydl26;$this->$dthi3c=$fljg27;$this->$gawi3d=$mbca28;$this->$qhmp3e=$crhu29;$this->ygrn1();}/**
* Setup the request stack by grabbing the initial request.
*
* @return void
*/ protected function ygrn1(){$this->$tfih3f[]=$this->$wsro3b[base64_decode('cmVxdWVzdA==')];}/**
* Attach files to be uploaded.
*
* @param array $files
*
* @return \Dingo\Api\Dispatcher
*/ public function xxci2(array$fljg27){foreach($fljg27 as $izrw40=>$qglj41){if(is_array($qglj41)){$qglj41=new zbhk42($qglj41[base64_decode('cGF0aA==')],basename($qglj41[base64_decode('cGF0aA==')]),$qglj41[base64_decode('bWltZQ==')],$qglj41[base64_decode('c2l6ZQ==')]);}elseif(is_string($qglj41)){$xrwc43=finfo_open(FILEINFO_MIME_TYPE);$qglj41=new zbhk42($qglj41,basename($qglj41),finfo_file($xrwc43,$qglj41),$this->$dthi3c->lcym44($qglj41));}elseif(!$qglj41 instanceof UploadedFile){continue;}$this->$cnqq45[$izrw40]=$qglj41;}return $this;}/**
* Internal request will be authenticated as the given user.
*
* @param mixed $user
*
* @return \Dingo\Api\Dispatcher
*/ public function fwyc3($iuyw46){$this->$qhmp3e->iitq47($iuyw46);return $this;}/**
* Send a JSON payload in the request body.
*
* @param string|array $content
*
* @return \Dingo\Api\Dispatcher
*/ public function folq4($hevb30){if(is_array($hevb30)){$hevb30=json_encode($hevb30);}$this->$yhgc48=$hevb30;return $this->snoya(base64_decode('Q29udGVudC1UeXBl'),base64_decode('YXBwbGljYXRpb24vanNvbg=='));}/**
* Sets the domain to be used for the request.
*
* @param string $domain
*
* @return \Dingo\Api\Dispatcher
*/ public function tufm5($seyn32){$this->$jcvd49=$seyn32;return $this;}/**
* Return the raw response object once request is dispatched.
*
* @return \Dingo\Api\Dispatcher
*/ public function fbri6(){$this->$sulj4a=true;return $this;}/**
* Only authenticate with the given user for a single request.
*
* @return \Dingo\Api\Dispatcher
*/ public function zvtp7(){$this->$jhqt4b=false;return $this;}/**
* Set the version of the API for the next request.
*
* @param string $version
*
* @return \Dingo\Api\Dispatcher
*/ public function wuzc8($punn2c){$this->$cadu4c=$punn2c;return $this;}/**
* Set the parameters to be sent on the next API request.
*
* @param string|array $parameters
*
* @return \Dingo\Api\Dispatcher
*/ public function rkrm9($gxaz2f){$this->$jpek4d=array_merge($this->$jpek4d,is_array($gxaz2f)?$gxaz2f:func_get_args());return $this;}/**
* Set a header to be sent on the next API request.
*
* @param string $key
* @param string $value
*
* @return \Dingo\Api\Dispatcher
*/ public function snoya($izrw40,$efpq4e){$this->$gvyo4f[$izrw40]=$efpq4e;return $this;}/**
* Set a cookie to be sent on the next API request.
*
* @param \Symfony\Component\HttpFoundation\Cookie $cookie
*
* @return \Dingo\Api\Dispatcher
*/ public function lglgb(Cookie $dyip50){$this->$gbfo51[]=$dyip50;return $this;}/**
* Perform API GET request.
*
* @param string $uri
* @param string|array $parameters
*
* @return mixed
*/ public function xsrrc($rsae52,$gxaz2f=[]){return $this->urjo11(base64_decode('Z2V0'),$rsae52,$gxaz2f);}/**
* Perform API POST request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function thand($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cG9zdA=='),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API PUT request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function gjyse($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cHV0'),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API PATCH request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function dcqsf($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('cGF0Y2g='),$rsae52,$gxaz2f,$hevb30);}/**
* Perform API DELETE request.
*
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ public function xuoy10($rsae52,$gxaz2f=[],$hevb30=''){return $this->urjo11(base64_decode('ZGVsZXRl'),$rsae52,$gxaz2f,$hevb30);}/**
* Queue up and dispatch a new request.
*
* @param string $verb
* @param string $uri
* @param string|array $parameters
* @param string $content
*
* @return mixed
*/ protected function urjo11($msfa53,$rsae52,$gxaz2f,$hevb30=''){if(!empty($hevb30)){$this->$yhgc48=$hevb30;}if(end($this->$tfih3f)!=$this->$wsro3b[base64_decode('cmVxdWVzdA==')]){$this->$tfih3f[]=$this->$wsro3b[base64_decode('cmVxdWVzdA==')];}$this->$tfih3f[]=$rfgq54=$this->esia12($msfa53,$rsae52,$gxaz2f);return $this->gatu15($rfgq54);}/**
* Create a new internal request from an HTTP verb and URI.
*
* @param string $verb
* @param string $uri
* @param string|array $parameters
*
* @return \Dingo\Api\Http\InternalRequest
*/ protected function esia12($msfa53,$rsae52,$gxaz2f){$gxaz2f=array_merge($this->$jpek4d,(array)$gxaz2f);$rsae52=$this->wjmb13($rsae52);$dowz55=$this->zxqd19()->rlrz56();if((!parse_url($rsae52,PHP_URL_SCHEME))&&parse_url($dowz55)!==false){$rsae52=rtrim($dowz55,base64_decode('Lw==')).base64_decode('Lw==').ltrim($rsae52,base64_decode('Lw=='));}$rfgq54=InternalRequest::pevt57($rsae52,$msfa53,$gxaz2f,$this->$gbfo51,$this->$cnqq45,$this->$wsro3b[base64_decode('cmVxdWVzdA==')]->$vcbe58->sxwi59(),$this->$yhgc48);$rfgq54->$gvyo4f->mopk5a(base64_decode('aG9zdA=='),$this->fpuo1a());foreach($this->$gvyo4f as $txzu5b=>$efpq4e){$rfgq54->$gvyo4f->mopk5a($txzu5b,$efpq4e);}$rfgq54->$gvyo4f->mopk5a(base64_decode('YWNjZXB0'),$this->jjjp14());return $rfgq54;}/**
* Add the prefix to the URI.
*
* @param string $uri
*
* @return string
*/ protected function wjmb13($rsae52){if(!isset($this->$ivdp5c)){return $rsae52;}$rsae52=trim($rsae52,base64_decode('Lw=='));if(Str::sxsj5d($rsae52,$this->$ivdp5c)){return $rsae52;}return rtrim(base64_decode('Lw==').trim($this->$ivdp5c,base64_decode('Lw==')).base64_decode('Lw==').$rsae52,base64_decode('Lw=='));}/**
* Build the "Accept" header.
*
* @return string
*/ protected function jjjp14(){return sprintf(base64_decode('YXBwbGljYXRpb24vJXMuJXMuJXMrJXM='),$this->krmu1f(),$this->zncf1d(),$this->zvfj1b(),$this->ednk1c());}/**
* Attempt to dispatch an internal request.
*
* @param \Dingo\Api\Http\InternalRequest $request
*
* @throws \Exception|\Symfony\Component\HttpKernel\Exception\HttpExceptionInterface
*
* @return mixed
*/ protected function gatu15(InternalRequest $rfgq54){$this->$razs5e[]=$this->$gawi3d->uphz5f();$this->eomi18();try{$this->$wsro3b->wdca60(base64_decode('cmVxdWVzdA=='),$rfgq54);$dvpe61=$this->$gawi3d->gatu15($rfgq54);if(!$dvpe61->osps62()&&!$dvpe61->ujrf63()){throw new uaxb64($dvpe61);}if(!$this->$sulj4a){$dvpe61=$dvpe61->lvsd65();}}catch(HttpExceptionInterface $tuig66){$this->yjmq16();throw $tuig66;}$this->yjmq16();return $dvpe61;}/**
* Refresh the request stack.
*
* This is done by resetting the authentication, popping
* the last request from the stack, replacing the input,
* and resetting the version and parameters.
*
* @return void
*/ protected function yjmq16(){if(!$this->$jhqt4b){$this->$qhmp3e->iitq47(null);$this->$jhqt4b=true;}if($gfit67=array_pop($this->$razs5e)){$this->$gawi3d->bday68($gfit67);}$this->lkbe17();$this->eomi18();$this->$sulj4a=false;$this->$cadu4c=$this->$jcvd49=$this->$yhgc48=null;$this->$jpek4d=$this->$cnqq45=[];}/**
* Replace the request instance with the previous request instance.
*
* @return void
*/ protected function lkbe17(){array_pop($this->$tfih3f);$this->$wsro3b->wdca60(base64_decode('cmVxdWVzdA=='),end($this->$tfih3f));}/**
* Clear the cached facade instance.
*
* @return void
*/ protected function eomi18(){RequestFacade::mtqc69(base64_decode('cmVxdWVzdA=='));}/**
* Get the root request instance.
*
* @return \Illuminate\Http\Request
*/ protected function zxqd19(){return reset($this->$tfih3f);}/**
* Get the domain.
*
* @return string
*/ public function fpuo1a(){return $this->$jcvd49?:$this->$wtob6a;}/**
* Get the version.
*
* @return string
*/ public function zvfj1b(){return $this->$cadu4c?:$this->$rtdo6b;}/**
* Get the format.
*
* @return string
*/ public function ednk1c(){return $this->$ayrz6c;}/**
* Get the subtype.
*
* @return string
*/ public function zncf1d(){return $this->$tumu6d;}/**
* Set the subtype.
*
* @param string $subtype
*
* @return void
*/ public function aock1e($xdcf35){$this->$tumu6d=$xdcf35;}/**
* Get the standards tree.
*
* @return string
*/ public function krmu1f(){return $this->$wbcw6e;}/**
* Set the standards tree.
*
* @param string $standardsTree
*
* @return void
*/ public function vbmr20($peiu36){$this->$wbcw6e=$peiu36;}/**
* Set the prefix.
*
* @param string $prefix
*
* @return void
*/ public function sqke21($chns37){$this->$ivdp5c=$chns37;}/**
* Set the default version.
*
* @param string $version
*
* @return void
*/ public function qnqf22($punn2c){$this->$rtdo6b=$punn2c;}/**
* Set the default domain.
*
* @param string $domain
*
* @return void
*/ public function lopr23($seyn32){$this->$wtob6a=$seyn32;}/**
* Set the default format.
*
* @param string $format
*
* @return void
*/ public function sepb24($sqlh6f){$this->$ayrz6c=$sqlh6f;}}?>
Function Calls
None |
Stats
MD5 | 8f501b0456d74687e7639f05b87f8cce |
Eval Count | 0 |
Decode Time | 87 ms |