Как исправить эту ошибку DEPRECATION в коде? - PullRequest
0 голосов
/ 31 мая 2019

Я использую кодирование, когда я пытаюсь проверить dbconnection, он показывает ошибку:

> DEPRECATION: Calling the
> "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()"
> method with the event name as first argument is deprecated since
> Symfony 4.3, pass it second and provide the event object first
> instead.
> C:\xampp\htdocs\affiliate_codeception\codeception\vendor\symfony\event-dispatcher\EventDispatcher.php:58"

Как мне это исправить?

<?php 
class adminTest extends \Codeception\Test\Unit
{
    /**
     * @var \UnitTester
     */
    protected $tester;

    protected function _before()
    {
    }

    protected function _after()
    {
    }

    // tests
    public function testSomeFeature()
    {

    }
    public function tryToTest(UnitTester $I)
    {
       $I->amConnectedToDatabase('testdb');
       //$I->seeInDatabase('users', ['name' => 'Davert', 'email' => 'davert@mail.com']);
    }
}
...