Eccube\Tests\Web\Admin\IndexControllerTest::createChangePasswordFormData PHP Method

createChangePasswordFormData() protected method

    protected function createChangePasswordFormData()
    {
        $faker = $this->getFaker();
        $password = $faker->lexify('????????');
        $form = array('current_password' => 'password', 'change_password' => array('first' => $password, 'second' => $password), '_token' => 'dummy');
        return $form;
    }