From edf9ddb6aef0cd91447595aa4e7eb794a812670c Mon Sep 17 00:00:00 2001 From: Lupacescu Eduard Date: Tue, 21 Jan 2020 13:35:50 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Repositories/Crudable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Repositories/Crudable.php b/src/Repositories/Crudable.php index 53aaa91b0..640e6bae2 100644 --- a/src/Repositories/Crudable.php +++ b/src/Repositories/Crudable.php @@ -105,7 +105,7 @@ public function store(RestifyRequest $request) return $this->response('', RestResponse::REST_RESPONSE_CREATED_CODE) ->model($this->resource) - ->header('Location', Restify::path() . '/' . static::uriKey() . '/' . $this->resource->id); + ->header('Location', Restify::path().'/'.static::uriKey().'/'.$this->resource->id); } /**