style(ecs): add easy-coding-standard to enforce coding style rules for php

- update .devcontainer settings: remove auto-formatting
for php + set intelephense as default formatter
- remove prettier php plugin as it lacks php 8 support
- add captain hook action for checking style pre-commit
- fix style with ecs on all files except views
This commit is contained in:
Yassine Doghri 2021-05-19 16:35:13 +00:00
commit aa1612342e
No known key found for this signature in database
GPG key ID: 3E7F89498B960C9F
230 changed files with 3420 additions and 5884 deletions

View file

@ -1,8 +1,8 @@
<?php
/**
* Class AnalyticsPodcastByRegionModel
* Model for analytics_podcasts_by_region table in database
* Class AnalyticsPodcastByRegionModel Model for analytics_podcasts_by_region table in database
*
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
@ -24,6 +24,7 @@ class AnalyticsPodcastByRegionModel extends Model
* @var string
*/
protected $returnType = AnalyticsPodcastsByRegion::class;
/**
* @var bool
*/
@ -41,11 +42,10 @@ class AnalyticsPodcastByRegionModel extends Model
*/
public function getData(int $podcastId): array
{
$locale = service('request')->getLocale();
$locale = service('request')
->getLocale();
if (
!($found = cache(
"{$podcastId}_analytics_podcast_by_region_{$locale}",
))
! ($found = cache("{$podcastId}_analytics_podcast_by_region_{$locale}",))
) {
$found = $this->select('country_code, region_code')
->selectSum('hits', 'value')
@ -59,11 +59,8 @@ class AnalyticsPodcastByRegionModel extends Model
->orderBy('value', 'DESC')
->findAll();
cache()->save(
"{$podcastId}_analytics_podcast_by_region_{$locale}",
$found,
600,
);
cache()
->save("{$podcastId}_analytics_podcast_by_region_{$locale}", $found, 600,);
}
return $found;
}