Use more standardized phpcs

This commit is contained in:
Dane Everitt
2021-01-23 12:33:34 -08:00
parent a043071e3c
commit c449ca5155
493 changed files with 1116 additions and 3903 deletions
+2 -18
View File
@@ -30,9 +30,6 @@ class AssetHashService
/**
* AssetHashService constructor.
*
* @param \Illuminate\Contracts\Foundation\Application $application
* @param \Illuminate\Filesystem\FilesystemManager $filesystem
*/
public function __construct(Application $application, FilesystemManager $filesystem)
{
@@ -43,9 +40,6 @@ class AssetHashService
/**
* Modify a URL to append the asset hash.
*
* @param string $resource
* @return string
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function url(string $resource): string
@@ -59,9 +53,6 @@ class AssetHashService
/**
* Return the data integrity hash for a resource.
*
* @param string $resource
* @return string
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function integrity(string $resource): string
@@ -75,9 +66,6 @@ class AssetHashService
/**
* Return a built CSS import using the provided URL.
*
* @param string $resource
* @return string
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function css(string $resource): string
@@ -105,9 +93,6 @@ class AssetHashService
/**
* Return a built JS import using the provided URL.
*
* @param string $resource
* @return string
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function js(string $resource): string
@@ -132,14 +117,13 @@ class AssetHashService
/**
* Get the asset manifest and store it in the cache for quicker lookups.
*
* @return array
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
protected function manifest(): array
{
return self::$manifest ?: self::$manifest = json_decode(
$this->filesystem->get(self::MANIFEST_PATH), true
$this->filesystem->get(self::MANIFEST_PATH),
true
);
}
}
@@ -11,7 +11,7 @@ use Pterodactyl\Exceptions\Service\Helper\CdnVersionFetchingException;
class SoftwareVersionService
{
const VERSION_CACHE_KEY = 'pterodactyl:versioning_data';
public const VERSION_CACHE_KEY = 'pterodactyl:versioning_data';
/**
* @var array
@@ -30,9 +30,6 @@ class SoftwareVersionService
/**
* SoftwareVersionService constructor.
*
* @param \Illuminate\Contracts\Cache\Repository $cache
* @param \GuzzleHttp\Client $client
*/
public function __construct(
CacheRepository $cache,
@@ -102,6 +99,7 @@ class SoftwareVersionService
* Determine if a passed daemon version string is the latest.
*
* @param string $version
*
* @return bool
*/
public function isLatestDaemon($version)
@@ -128,7 +126,7 @@ class SoftwareVersionService
return json_decode($response->getBody(), true);
}
throw new CdnVersionFetchingException;
throw new CdnVersionFetchingException();
} catch (Exception $exception) {
return [];
}