apply StyleCI recommendation
This commit is contained in:
parent
fa4fe2852d
commit
68b097087d
|
@ -130,7 +130,7 @@ class Request
|
||||||
if (array_key_exists('pasteid', $this->_params) && !empty($this->_params['pasteid'])) {
|
if (array_key_exists('pasteid', $this->_params) && !empty($this->_params['pasteid'])) {
|
||||||
if (array_key_exists('deletetoken', $this->_params) && !empty($this->_params['deletetoken'])) {
|
if (array_key_exists('deletetoken', $this->_params) && !empty($this->_params['deletetoken'])) {
|
||||||
$this->_operation = 'delete';
|
$this->_operation = 'delete';
|
||||||
} else if ($this->_operation != 'create') {
|
} elseif ($this->_operation != 'create') {
|
||||||
$this->_operation = 'read';
|
$this->_operation = 'read';
|
||||||
}
|
}
|
||||||
} elseif (array_key_exists('jsonld', $this->_params) && !empty($this->_params['jsonld'])) {
|
} elseif (array_key_exists('jsonld', $this->_params) && !empty($this->_params['jsonld'])) {
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Google\Auth\HttpHandler\HttpHandlerFactory;
|
|
||||||
use Google\Cloud\Core\Exception\BadRequestException;
|
use Google\Cloud\Core\Exception\BadRequestException;
|
||||||
use Google\Cloud\Core\Exception\NotFoundException;
|
use Google\Cloud\Core\Exception\NotFoundException;
|
||||||
use Google\Cloud\Storage\Bucket;
|
use Google\Cloud\Storage\Bucket;
|
||||||
use Google\Cloud\Storage\Connection\ConnectionInterface;
|
use Google\Cloud\Storage\Connection\ConnectionInterface;
|
||||||
use Google\Cloud\Storage\StorageClient;
|
use Google\Cloud\Storage\StorageClient;
|
||||||
use Google\Cloud\Storage\StorageObject;
|
use Google\Cloud\Storage\StorageObject;
|
||||||
use GuzzleHttp\Client;
|
|
||||||
use PrivateBin\Data\GoogleCloudStorage;
|
use PrivateBin\Data\GoogleCloudStorage;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue