Remove usage of codeception/specify and fzaninotto/faker

This commit is contained in:
ErickSkrauch
2019-12-29 17:55:21 +03:00
parent 43a4a58053
commit 7607248c27
5 changed files with 12 additions and 11 deletions

View File

@@ -1,11 +1,12 @@
<?php
namespace common\components\Sentry;
declare(strict_types=1);
namespace common\components;
use mito\sentry\Component;
use Yii;
class Component extends \mito\sentry\Component {
public $jsNotifier = false;
class Sentry extends Component {
public function init() {
if (!$this->enabled) {

View File

@@ -1,13 +1,13 @@
<?php
declare(strict_types=1);
namespace common\components\SkinSystem;
namespace common\components;
use GuzzleHttp\ClientInterface;
use Yii;
// TODO: convert to complete Chrly client library
class Api {
class SkinsSystemApi {
private const BASE_DOMAIN = 'http://skinsystem.ely.by';