From 2cdf7dd1cf6b89d9dd5558f919ea46d573dbcf23 Mon Sep 17 00:00:00 2001 From: richard Date: Sat, 20 Jun 2020 12:36:34 -0400 Subject: [PATCH] update webpatser/laravel-uuid to version 3 --- .env-testing | 0 .gitignore | 0 Jenkinsfile | 0 README.md | 0 codeception.yml | 0 composer.json | 2 +- composer.lock | 2433 +++++++++-------- database/migrations/.gitkeep | 0 .../2014_10_12_000000_create_users_table.php | 2 +- ...12_100000_create_password_resets_table.php | 2 +- ...15_11_07_012716_create_parseabc_tables.php | 2 +- .../2016_03_06_021725_create_jobs_table.php | 2 +- ..._03_06_021806_create_failed_jobs_table.php | 2 +- docker-compose.yml | 0 src/Application/Boundary/PersonMapper.php | 0 src/Application/PersonFactory.php | 0 src/Application/PersonRepository.php | 0 .../UseCases/ExtractTuneFromCollection.php | 0 src/Application/UseCases/ImportAbcFile.php | 0 src/Domain/Atoms/EmailAtom.php | 3 +- src/Domain/Atoms/UnsignedIntegerAtom.php | 0 src/Domain/Boundary/PersonFactory.php | 0 src/Domain/Boundary/PersonRepository.php | 0 src/Domain/Core/AttributeTrait.php | 0 src/Domain/Core/Author.php | 0 src/Domain/Core/Collection.php | 0 src/Domain/Core/Composer.php | 0 src/Domain/Core/EntityInterface.php | 0 src/Domain/Core/IdentityTrait.php | 0 src/Domain/Core/MultivalueAttribute.php | 0 src/Domain/Core/Person.php | 3 +- src/Domain/Core/Setting.php | 2 - src/Domain/Core/Transcriber.php | 0 src/Domain/Core/Tune.php | 1 - src/Domain/Core/TuneAttributeArrayBuilder.php | 0 src/Domain/Core/TuneBuilder.php | 0 src/Domain/Core/TuneCollection.php | 0 src/Domain/Modules/Interpreter/Builder.php | 1 + src/Domain/Modules/Interpreter/Context.php | 0 .../Interpreter/DefaultInterpreter.php | 2 - .../Modules/Interpreter/Interpreter.php | 1 - .../Interpreter/InterpreterPipeline.php | 0 .../Modules/Interpreter/Lexicon/Author.php | 8 +- .../Modules/Interpreter/Lexicon/Book.php | 7 +- .../Modules/Interpreter/Lexicon/Composer.php | 8 +- .../Interpreter/Lexicon/Discography.php | 7 +- .../Modules/Interpreter/Lexicon/EndOfTune.php | 6 +- .../Modules/Interpreter/Lexicon/Filename.php | 7 +- .../Modules/Interpreter/Lexicon/Group.php | 7 +- .../Modules/Interpreter/Lexicon/History.php | 12 +- .../Modules/Interpreter/Lexicon/Index.php | 7 +- .../Interpreter/Lexicon/KeySignature.php | 7 +- .../Modules/Interpreter/Lexicon/Lex.php | 0 .../Interpreter/Lexicon/LineKeyDataTrait.php | 0 .../Modules/Interpreter/Lexicon/Meter.php | 7 +- .../Modules/Interpreter/Lexicon/MusicLine.php | 8 +- .../Interpreter/Lexicon/NoteLength.php | 7 +- .../Modules/Interpreter/Lexicon/Notes.php | 7 +- .../Modules/Interpreter/Lexicon/Origin.php | 7 +- .../Modules/Interpreter/Lexicon/Parts.php | 7 +- .../Modules/Interpreter/Lexicon/Rhythm.php | 7 +- .../Modules/Interpreter/Lexicon/Source.php | 7 +- .../Modules/Interpreter/Lexicon/Tempo.php | 7 +- .../Modules/Interpreter/Lexicon/Title.php | 8 +- .../Interpreter/Lexicon/Transcriber.php | 7 +- .../Modules/Interpreter/Lexicon/Words.php | 7 +- src/Interfaces/Builder.php | 0 src/Interfaces/Exporter.php | 0 src/Interfaces/Manipulator.php | 0 src/Traits/ValidationTrait.php | 2 +- tests/_bootstrap.php | 4 +- tests/_data/abc/jigs.abc | 0 tests/_data/abc/valid_abc_1.abc | 0 tests/_data/abc/valid_abc_2.abc | 0 tests/_data/abc/valid_abc_3.abc | 0 tests/_data/dump.sql | 0 tests/_support/Helper/ExtraAsserts.php | 12 +- tests/_support/Helper/Unit.php | 4 +- tests/_support/UnitTester.php | 15 +- .../_generated/AcceptanceTesterActions.php | 301 +- .../_generated/FunctionalTesterActions.php | 546 ++-- .../_support/_generated/UnitTesterActions.php | 150 +- tests/unit.suite.yml | 0 .../Application/PersonFactoryTest.php | 3 +- .../ExtractTuneFromCollectionTest.php | 3 +- .../UseCases/ImportAbcFileTest.php | 3 +- .../Domain/Atoms/UnsignedIntegerAtomTest.php | 4 +- .../unit/AbcParser/Domain/Core/PersonTest.php | 3 +- .../AbcParser/Domain/Core/SettingTest.php | 3 +- .../Core/TuneAttributeArrayBuilderTest.php | 5 +- tests/unit/AbcParser/Domain/Core/TuneTest.php | 5 +- .../Modules/Interpreter/ContextTest.php | 3 +- .../Interpreter/DefaultInterpreterTest.php | 8 +- tests/unit/_bootstrap.php | 0 94 files changed, 1846 insertions(+), 1848 deletions(-) mode change 100644 => 100755 .env-testing mode change 100644 => 100755 .gitignore mode change 100644 => 100755 Jenkinsfile mode change 100644 => 100755 README.md mode change 100644 => 100755 codeception.yml mode change 100644 => 100755 composer.json mode change 100644 => 100755 composer.lock mode change 100644 => 100755 database/migrations/.gitkeep mode change 100644 => 100755 database/migrations/2014_10_12_000000_create_users_table.php mode change 100644 => 100755 database/migrations/2014_10_12_100000_create_password_resets_table.php mode change 100644 => 100755 database/migrations/2015_11_07_012716_create_parseabc_tables.php mode change 100644 => 100755 database/migrations/2016_03_06_021725_create_jobs_table.php mode change 100644 => 100755 database/migrations/2016_03_06_021806_create_failed_jobs_table.php mode change 100644 => 100755 docker-compose.yml mode change 100644 => 100755 src/Application/Boundary/PersonMapper.php mode change 100644 => 100755 src/Application/PersonFactory.php mode change 100644 => 100755 src/Application/PersonRepository.php mode change 100644 => 100755 src/Application/UseCases/ExtractTuneFromCollection.php mode change 100644 => 100755 src/Application/UseCases/ImportAbcFile.php mode change 100644 => 100755 src/Domain/Atoms/EmailAtom.php mode change 100644 => 100755 src/Domain/Atoms/UnsignedIntegerAtom.php mode change 100644 => 100755 src/Domain/Boundary/PersonFactory.php mode change 100644 => 100755 src/Domain/Boundary/PersonRepository.php mode change 100644 => 100755 src/Domain/Core/AttributeTrait.php mode change 100644 => 100755 src/Domain/Core/Author.php mode change 100644 => 100755 src/Domain/Core/Collection.php mode change 100644 => 100755 src/Domain/Core/Composer.php mode change 100644 => 100755 src/Domain/Core/EntityInterface.php mode change 100644 => 100755 src/Domain/Core/IdentityTrait.php mode change 100644 => 100755 src/Domain/Core/MultivalueAttribute.php mode change 100644 => 100755 src/Domain/Core/Person.php mode change 100644 => 100755 src/Domain/Core/Setting.php mode change 100644 => 100755 src/Domain/Core/Transcriber.php mode change 100644 => 100755 src/Domain/Core/Tune.php mode change 100644 => 100755 src/Domain/Core/TuneAttributeArrayBuilder.php mode change 100644 => 100755 src/Domain/Core/TuneBuilder.php mode change 100644 => 100755 src/Domain/Core/TuneCollection.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Builder.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Context.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/DefaultInterpreter.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Interpreter.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/InterpreterPipeline.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Author.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Book.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Composer.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Discography.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/EndOfTune.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Filename.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Group.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/History.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Index.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/KeySignature.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Lex.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/LineKeyDataTrait.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Meter.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/MusicLine.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/NoteLength.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Notes.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Origin.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Parts.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Rhythm.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Source.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Tempo.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Title.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Transcriber.php mode change 100644 => 100755 src/Domain/Modules/Interpreter/Lexicon/Words.php mode change 100644 => 100755 src/Interfaces/Builder.php mode change 100644 => 100755 src/Interfaces/Exporter.php mode change 100644 => 100755 src/Interfaces/Manipulator.php mode change 100644 => 100755 src/Traits/ValidationTrait.php mode change 100644 => 100755 tests/_bootstrap.php mode change 100644 => 100755 tests/_data/abc/jigs.abc mode change 100644 => 100755 tests/_data/abc/valid_abc_1.abc mode change 100644 => 100755 tests/_data/abc/valid_abc_2.abc mode change 100644 => 100755 tests/_data/abc/valid_abc_3.abc mode change 100644 => 100755 tests/_data/dump.sql mode change 100644 => 100755 tests/_support/Helper/ExtraAsserts.php mode change 100644 => 100755 tests/_support/Helper/Unit.php mode change 100644 => 100755 tests/_support/UnitTester.php mode change 100644 => 100755 tests/_support/_generated/AcceptanceTesterActions.php mode change 100644 => 100755 tests/_support/_generated/FunctionalTesterActions.php mode change 100644 => 100755 tests/_support/_generated/UnitTesterActions.php mode change 100644 => 100755 tests/unit.suite.yml mode change 100644 => 100755 tests/unit/AbcParser/Application/PersonFactoryTest.php mode change 100644 => 100755 tests/unit/AbcParser/Application/UseCases/ExtractTuneFromCollectionTest.php mode change 100644 => 100755 tests/unit/AbcParser/Application/UseCases/ImportAbcFileTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Atoms/UnsignedIntegerAtomTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Core/PersonTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Core/SettingTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Core/TuneAttributeArrayBuilderTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Core/TuneTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Modules/Interpreter/ContextTest.php mode change 100644 => 100755 tests/unit/AbcParser/Domain/Modules/Interpreter/DefaultInterpreterTest.php mode change 100644 => 100755 tests/unit/_bootstrap.php diff --git a/.env-testing b/.env-testing old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/Jenkinsfile b/Jenkinsfile old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/codeception.yml b/codeception.yml old mode 100644 new mode 100755 diff --git a/composer.json b/composer.json old mode 100644 new mode 100755 index 0804697..aaacecd --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "require": { "php": ">=7.1", "zackkitzmiller/tiny": "^1.2", - "webpatser/laravel-uuid": "^2.0", + "webpatser/laravel-uuid": "~3.0", "enzyme/axiom": "^4.2", "enzyme/freckle": "^0.3.0", "illuminate/database": "^5.5", diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 index 58a1d7a..d42ce0c --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "fccd5312f23cc5a37ed9a08186f8a1ef", + "content-hash": "9d817d930f19aa89df9628ef6166d18f", "packages": [ { "name": "beberlei/assert", @@ -61,232 +61,6 @@ ], "time": "2018-04-16T11:18:27+00:00" }, - { - "name": "behat/gherkin", - "version": "v4.5.1", - "source": { - "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", - "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "~4.5|~5", - "symfony/phpunit-bridge": "~2.7|~3", - "symfony/yaml": "~2.3|~3" - }, - "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, - "autoload": { - "psr-0": { - "Behat\\Gherkin": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Gherkin DSL parser for PHP 5.3", - "homepage": "http://behat.org/", - "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" - ], - "time": "2017-08-30T11:04:43+00:00" - }, - { - "name": "codeception/codeception", - "version": "2.4.1", - "source": { - "type": "git", - "url": "https://github.com/Codeception/Codeception.git", - "reference": "bca3547632556875f1cdd567d6057cc14fe472b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/bca3547632556875f1cdd567d6057cc14fe472b8", - "reference": "bca3547632556875f1cdd567d6057cc14fe472b8", - "shasum": "" - }, - "require": { - "behat/gherkin": "^4.4.0", - "codeception/phpunit-wrapper": "^6.0.9|^7.0.6", - "codeception/stub": "^1.0", - "ext-json": "*", - "ext-mbstring": "*", - "facebook/webdriver": ">=1.1.3 <2.0", - "guzzlehttp/guzzle": ">=4.1.4 <7.0", - "guzzlehttp/psr7": "~1.0", - "php": ">=5.4.0 <8.0", - "symfony/browser-kit": ">=2.7 <5.0", - "symfony/console": ">=2.7 <5.0", - "symfony/css-selector": ">=2.7 <5.0", - "symfony/dom-crawler": ">=2.7 <5.0", - "symfony/event-dispatcher": ">=2.7 <5.0", - "symfony/finder": ">=2.7 <5.0", - "symfony/yaml": ">=2.7 <5.0" - }, - "require-dev": { - "codeception/specify": "~0.3", - "facebook/graph-sdk": "~5.3", - "flow/jsonpath": "~0.2", - "monolog/monolog": "~1.8", - "pda/pheanstalk": "~3.0", - "php-amqplib/php-amqplib": "~2.4", - "predis/predis": "^1.0", - "squizlabs/php_codesniffer": "~2.0", - "symfony/process": ">=2.7 <5.0", - "vlucas/phpdotenv": "^2.4.0" - }, - "suggest": { - "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module", - "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests", - "codeception/specify": "BDD-style code blocks", - "codeception/verify": "BDD-style assertions", - "flow/jsonpath": "For using JSONPath in REST module", - "league/factory-muffin": "For DataFactory module", - "league/factory-muffin-faker": "For Faker support in DataFactory module", - "phpseclib/phpseclib": "for SFTP option in FTP Module", - "stecman/symfony-console-completion": "For BASH autocompletion", - "symfony/phpunit-bridge": "For phpunit-bridge support" - }, - "bin": [ - "codecept" - ], - "type": "library", - "extra": { - "branch-alias": [] - }, - "autoload": { - "psr-4": { - "Codeception\\": "src\\Codeception", - "Codeception\\Extension\\": "ext" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Bodnarchuk", - "email": "davert@mail.ua", - "homepage": "http://codegyre.com" - } - ], - "description": "BDD-style testing framework", - "homepage": "http://codeception.com/", - "keywords": [ - "BDD", - "TDD", - "acceptance testing", - "functional testing", - "unit testing" - ], - "time": "2018-03-31T22:30:43+00:00" - }, - { - "name": "codeception/phpunit-wrapper", - "version": "7.1.1", - "source": { - "type": "git", - "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc", - "reference": "33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc", - "shasum": "" - }, - "require": { - "phpunit/php-code-coverage": "^6.0", - "phpunit/phpunit": "^7.1", - "sebastian/comparator": "^2.0", - "sebastian/diff": "^3.0" - }, - "require-dev": { - "codeception/specify": "*", - "vlucas/phpdotenv": "^2.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\PHPUnit\\": "src\\" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Davert", - "email": "davert.php@resend.cc" - } - ], - "description": "PHPUnit classes used by Codeception", - "time": "2018-04-20T10:17:13+00:00" - }, - { - "name": "codeception/stub", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/Codeception/Stub.git", - "reference": "95fb7a36b81890dd2e5163e7ab31310df6f1bb99" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/95fb7a36b81890dd2e5163e7ab31310df6f1bb99", - "reference": "95fb7a36b81890dd2e5163e7ab31310df6f1bb99", - "shasum": "" - }, - "require": { - "phpunit/phpunit-mock-objects": ">2.3 <7.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.8 <8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", - "time": "2018-02-18T13:56:56+00:00" - }, { "name": "doctrine/annotations", "version": "v1.6.0", @@ -496,60 +270,6 @@ ], "time": "2018-01-09T20:05:19+00:00" }, - { - "name": "doctrine/instantiator", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", - "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "athletic/athletic": "~0.1.8", - "ext-pdo": "*", - "ext-phar": "*", - "phpunit/phpunit": "^6.2.3", - "squizlabs/php_codesniffer": "^3.0.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://github.com/doctrine/instantiator", - "keywords": [ - "constructor", - "instantiate" - ], - "time": "2017-07-22T11:58:36+00:00" - }, { "name": "doctrine/lexer", "version": "v1.0.1", @@ -820,61 +540,6 @@ ], "time": "2015-12-14T01:16:37+00:00" }, - { - "name": "facebook/webdriver", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://github.com/facebook/php-webdriver.git", - "reference": "86b5ca2f67173c9d34340845dd690149c886a605" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/86b5ca2f67173c9d34340845dd690149c886a605", - "reference": "86b5ca2f67173c9d34340845dd690149c886a605", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "ext-zip": "*", - "php": "^5.6 || ~7.0", - "symfony/process": "^2.8 || ^3.1 || ^4.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.0", - "guzzle/guzzle": "^3.4.1", - "php-coveralls/php-coveralls": "^1.0.2", - "php-mock/php-mock-phpunit": "^1.1", - "phpunit/phpunit": "^5.7", - "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0", - "squizlabs/php_codesniffer": "^2.6", - "symfony/var-dumper": "^3.3 || ^4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-community": "1.5-dev" - } - }, - "autoload": { - "psr-4": { - "Facebook\\WebDriver\\": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "A PHP client for Selenium WebDriver", - "homepage": "https://github.com/facebook/php-webdriver", - "keywords": [ - "facebook", - "php", - "selenium", - "webdriver" - ], - "time": "2017-11-15T11:08:09+00:00" - }, { "name": "goaop/framework", "version": "2.2.0", @@ -992,187 +657,6 @@ "description": "Provides reflection information, based on raw source", "time": "2018-03-19T15:57:41+00:00" }, - { - "name": "guzzlehttp/guzzle", - "version": "6.3.3", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "shasum": "" - }, - "require": { - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.0" - }, - "suggest": { - "psr/log": "Required for using the Log middleware" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.3-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], - "time": "2018-04-22T15:46:56+00:00" - }, - { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "time": "2016-12-20T10:07:11+00:00" - }, - { - "name": "guzzlehttp/psr7", - "version": "1.4.2", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "phpunit/phpunit": "~4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "request", - "response", - "stream", - "uri", - "url" - ], - "time": "2017-03-20T17:10:46+00:00" - }, { "name": "icanboogie/inflector", "version": "v1.4.4", @@ -1575,51 +1059,6 @@ ], "time": "2016-10-13T20:53:39+00:00" }, - { - "name": "myclabs/deep-copy", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "require-dev": { - "doctrine/collections": "^1.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^4.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, - "files": [ - "src/DeepCopy/deep_copy.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "time": "2017-10-19T19:58:43+00:00" - }, { "name": "nesbot/carbon", "version": "1.27.0", @@ -1719,6 +1158,1218 @@ ], "time": "2018-02-28T20:30:58+00:00" }, + { + "name": "php-deal/framework", + "version": "0.4.1", + "source": { + "type": "git", + "url": "https://github.com/php-deal/framework.git", + "reference": "a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-deal/framework/zipball/a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22", + "reference": "a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22", + "shasum": "" + }, + "require": { + "beberlei/assert": "^2.4", + "goaop/framework": "~1.0|~2.0@dev" + }, + "require-dev": { + "symfony/console": "~2.7|~3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpDeal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander Lisachenko", + "email": "lisachenko.it@gmail.com" + } + ], + "description": "Design by Contract framework for PHP", + "time": "2016-04-03T17:59:11+00:00" + }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" + }, + { + "name": "psr/log", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "time": "2016-10-10T12:19:37+00:00" + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "time": "2017-10-23T01:57:42+00:00" + }, + { + "name": "symfony/console", + "version": "v3.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf", + "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com", + "time": "2018-04-03T05:22:50+00:00" + }, + { + "name": "symfony/debug", + "version": "v4.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "5961d02d48828671f5d8a7805e06579d692f6ede" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/5961d02d48828671f5d8a7805e06579d692f6ede", + "reference": "5961d02d48828671f5d8a7805e06579d692f6ede", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "~3.4|~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Debug Component", + "homepage": "https://symfony.com", + "time": "2018-04-03T05:24:00+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.7.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b", + "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "time": "2018-01-30T19:27:44+00:00" + }, + { + "name": "symfony/translation", + "version": "v4.0.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/e20a9b7f9f62cb33a11638b345c248e7d510c938", + "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/config": "<3.4", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/intl": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "psr/log": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Translation Component", + "homepage": "https://symfony.com", + "time": "2018-02-22T10:50:29+00:00" + }, + { + "name": "webpatser/laravel-uuid", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/webpatser/laravel-uuid.git", + "reference": "a7ce65cdabbc9970fc2a87fdf67b48e0b1641d23" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webpatser/laravel-uuid/zipball/a7ce65cdabbc9970fc2a87fdf67b48e0b1641d23", + "reference": "a7ce65cdabbc9970fc2a87fdf67b48e0b1641d23", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "fzaninotto/faker": "~1.4", + "phpunit/phpunit": "~6.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Webpatser\\Uuid\\UuidServiceProvider" + ], + "aliases": { + "Uuid": "Webpatser\\Uuid\\Uuid" + } + } + }, + "autoload": { + "psr-0": { + "Webpatser\\Uuid": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christoph Kempen", + "email": "christoph@downsized.nl" + } + ], + "description": "Laravel package to generate and to validate a universally unique identifier (UUID) according to the RFC 4122 standard. Support for version 1, 3, 4 and 5 UUIDs are built-in.", + "homepage": "https://github.com/webpatser/uuid", + "keywords": [ + "UUID RFC4122" + ], + "time": "2017-10-04T07:47:40+00:00" + }, + { + "name": "zackkitzmiller/tiny", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/zackkitzmiller/tiny-php.git", + "reference": "e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zackkitzmiller/tiny-php/zipball/e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71", + "reference": "e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "league/phpunit-coverage-listener": "~1.1", + "phpunit/phpunit": "~3.7.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "ZackKitzmiller": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jacob DeHart" + }, + { + "name": "Kyle Bragger" + }, + { + "name": "Zack Kitzmiller", + "email": "zack@inrpce.com" + } + ], + "description": "A reversible base62 ID obfuscater.", + "time": "2017-02-07T15:14:28+00:00" + } + ], + "packages-dev": [ + { + "name": "behat/gherkin", + "version": "v4.5.1", + "source": { + "type": "git", + "url": "https://github.com/Behat/Gherkin.git", + "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", + "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", + "shasum": "" + }, + "require": { + "php": ">=5.3.1" + }, + "require-dev": { + "phpunit/phpunit": "~4.5|~5", + "symfony/phpunit-bridge": "~2.7|~3", + "symfony/yaml": "~2.3|~3" + }, + "suggest": { + "symfony/yaml": "If you want to parse features, represented in YAML files" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-0": { + "Behat\\Gherkin": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Gherkin DSL parser for PHP 5.3", + "homepage": "http://behat.org/", + "keywords": [ + "BDD", + "Behat", + "Cucumber", + "DSL", + "gherkin", + "parser" + ], + "time": "2017-08-30T11:04:43+00:00" + }, + { + "name": "codeception/codeception", + "version": "2.4.1", + "source": { + "type": "git", + "url": "https://github.com/Codeception/Codeception.git", + "reference": "bca3547632556875f1cdd567d6057cc14fe472b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/bca3547632556875f1cdd567d6057cc14fe472b8", + "reference": "bca3547632556875f1cdd567d6057cc14fe472b8", + "shasum": "" + }, + "require": { + "behat/gherkin": "^4.4.0", + "codeception/phpunit-wrapper": "^6.0.9|^7.0.6", + "codeception/stub": "^1.0", + "ext-json": "*", + "ext-mbstring": "*", + "facebook/webdriver": ">=1.1.3 <2.0", + "guzzlehttp/guzzle": ">=4.1.4 <7.0", + "guzzlehttp/psr7": "~1.0", + "php": ">=5.4.0 <8.0", + "symfony/browser-kit": ">=2.7 <5.0", + "symfony/console": ">=2.7 <5.0", + "symfony/css-selector": ">=2.7 <5.0", + "symfony/dom-crawler": ">=2.7 <5.0", + "symfony/event-dispatcher": ">=2.7 <5.0", + "symfony/finder": ">=2.7 <5.0", + "symfony/yaml": ">=2.7 <5.0" + }, + "require-dev": { + "codeception/specify": "~0.3", + "facebook/graph-sdk": "~5.3", + "flow/jsonpath": "~0.2", + "monolog/monolog": "~1.8", + "pda/pheanstalk": "~3.0", + "php-amqplib/php-amqplib": "~2.4", + "predis/predis": "^1.0", + "squizlabs/php_codesniffer": "~2.0", + "symfony/process": ">=2.7 <5.0", + "vlucas/phpdotenv": "^2.4.0" + }, + "suggest": { + "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module", + "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests", + "codeception/specify": "BDD-style code blocks", + "codeception/verify": "BDD-style assertions", + "flow/jsonpath": "For using JSONPath in REST module", + "league/factory-muffin": "For DataFactory module", + "league/factory-muffin-faker": "For Faker support in DataFactory module", + "phpseclib/phpseclib": "for SFTP option in FTP Module", + "stecman/symfony-console-completion": "For BASH autocompletion", + "symfony/phpunit-bridge": "For phpunit-bridge support" + }, + "bin": [ + "codecept" + ], + "type": "library", + "extra": { + "branch-alias": [] + }, + "autoload": { + "psr-4": { + "Codeception\\": "src\\Codeception", + "Codeception\\Extension\\": "ext" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Bodnarchuk", + "email": "davert@mail.ua", + "homepage": "http://codegyre.com" + } + ], + "description": "BDD-style testing framework", + "homepage": "http://codeception.com/", + "keywords": [ + "BDD", + "TDD", + "acceptance testing", + "functional testing", + "unit testing" + ], + "time": "2018-03-31T22:30:43+00:00" + }, + { + "name": "codeception/phpunit-wrapper", + "version": "7.1.1", + "source": { + "type": "git", + "url": "https://github.com/Codeception/phpunit-wrapper.git", + "reference": "33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc", + "reference": "33e8ccf2f7abf5c031eeae9802b821d30ec0f7fc", + "shasum": "" + }, + "require": { + "phpunit/php-code-coverage": "^6.0", + "phpunit/phpunit": "^7.1", + "sebastian/comparator": "^2.0", + "sebastian/diff": "^3.0" + }, + "require-dev": { + "codeception/specify": "*", + "vlucas/phpdotenv": "^2.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Codeception\\PHPUnit\\": "src\\" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Davert", + "email": "davert.php@resend.cc" + } + ], + "description": "PHPUnit classes used by Codeception", + "time": "2018-04-20T10:17:13+00:00" + }, + { + "name": "codeception/stub", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/Codeception/Stub.git", + "reference": "95fb7a36b81890dd2e5163e7ab31310df6f1bb99" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/Stub/zipball/95fb7a36b81890dd2e5163e7ab31310df6f1bb99", + "reference": "95fb7a36b81890dd2e5163e7ab31310df6f1bb99", + "shasum": "" + }, + "require": { + "phpunit/phpunit-mock-objects": ">2.3 <7.0" + }, + "require-dev": { + "phpunit/phpunit": ">=4.8 <8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Codeception\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", + "time": "2018-02-18T13:56:56+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "ext-pdo": "*", + "ext-phar": "*", + "phpunit/phpunit": "^6.2.3", + "squizlabs/php_codesniffer": "^3.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2017-07-22T11:58:36+00:00" + }, + { + "name": "facebook/webdriver", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/facebook/php-webdriver.git", + "reference": "86b5ca2f67173c9d34340845dd690149c886a605" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/86b5ca2f67173c9d34340845dd690149c886a605", + "reference": "86b5ca2f67173c9d34340845dd690149c886a605", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-zip": "*", + "php": "^5.6 || ~7.0", + "symfony/process": "^2.8 || ^3.1 || ^4.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "guzzle/guzzle": "^3.4.1", + "php-coveralls/php-coveralls": "^1.0.2", + "php-mock/php-mock-phpunit": "^1.1", + "phpunit/phpunit": "^5.7", + "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0", + "squizlabs/php_codesniffer": "^2.6", + "symfony/var-dumper": "^3.3 || ^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-community": "1.5-dev" + } + }, + "autoload": { + "psr-4": { + "Facebook\\WebDriver\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "A PHP client for Selenium WebDriver", + "homepage": "https://github.com/facebook/php-webdriver", + "keywords": [ + "facebook", + "php", + "selenium", + "webdriver" + ], + "time": "2017-11-15T11:08:09+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "6.3.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "shasum": "" + }, + "require": { + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.4", + "php": ">=5.5" + }, + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.3-dev" + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ], + "time": "2018-04-22T15:46:56+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "shasum": "" + }, + "require": { + "php": ">=5.5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "time": "2016-12-20T10:07:11+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "1.4.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", + "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Schultze", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "request", + "response", + "stream", + "uri", + "url" + ], + "time": "2017-03-20T17:10:46+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", + "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "1.3.3", + "phpunit/phpunit": "~4.0", + "satooshi/php-coveralls": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "time": "2016-01-20T08:20:44+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.0", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38", + "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "~2.0", + "lib-pcre": ">=7.0", + "php": ">=5.6.0" + }, + "require-dev": { + "phpunit/phpunit": "~5.7|~6.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", + "homepage": "http://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "time": "2017-10-06T16:20:43+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^4.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2017-10-19T19:58:43+00:00" + }, { "name": "pdepend/pdepend", "version": "2.5.2", @@ -1861,46 +2512,6 @@ "description": "Library for handling version information and constraints", "time": "2017-03-05T17:38:23+00:00" }, - { - "name": "php-deal/framework", - "version": "0.4.1", - "source": { - "type": "git", - "url": "https://github.com/php-deal/framework.git", - "reference": "a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-deal/framework/zipball/a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22", - "reference": "a1e3bd96f8b02ddfac9126e95a79cfc8ee6d8b22", - "shasum": "" - }, - "require": { - "beberlei/assert": "^2.4", - "goaop/framework": "~1.0|~2.0@dev" - }, - "require-dev": { - "symfony/console": "~2.7|~3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "PhpDeal\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alexander Lisachenko", - "email": "lisachenko.it@gmail.com" - } - ], - "description": "Design by Contract framework for PHP", - "time": "2016-04-03T17:59:11+00:00" - }, { "name": "phpdocumentor/reflection-common", "version": "1.0.1", @@ -2567,55 +3178,6 @@ ], "time": "2018-04-11T04:50:36+00:00" }, - { - "name": "psr/container", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], - "time": "2017-02-14T16:28:37+00:00" - }, { "name": "psr/http-message", "version": "1.0.1", @@ -2666,101 +3228,6 @@ ], "time": "2016-08-06T14:39:51+00:00" }, - { - "name": "psr/log", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2016-10-10T12:19:37+00:00" - }, - { - "name": "psr/simple-cache", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/simple-cache.git", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\SimpleCache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interfaces for simple caching", - "keywords": [ - "cache", - "caching", - "psr", - "psr-16", - "simple-cache" - ], - "time": "2017-10-23T01:57:42+00:00" - }, { "name": "sebastian/code-unit-reverse-lookup", "version": "1.0.1", @@ -3494,75 +3961,6 @@ "homepage": "https://symfony.com", "time": "2018-03-19T22:35:49+00:00" }, - { - "name": "symfony/console", - "version": "v3.4.8", - "source": { - "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf", - "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf", - "shasum": "" - }, - "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/debug": "~2.8|~3.0|~4.0", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/process": "<3.3" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.3|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.3|~4.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Console Component", - "homepage": "https://symfony.com", - "time": "2018-04-03T05:22:50+00:00" - }, { "name": "symfony/css-selector", "version": "v4.0.8", @@ -3616,62 +4014,6 @@ "homepage": "https://symfony.com", "time": "2018-03-19T22:35:49+00:00" }, - { - "name": "symfony/debug", - "version": "v4.0.8", - "source": { - "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "5961d02d48828671f5d8a7805e06579d692f6ede" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/5961d02d48828671f5d8a7805e06579d692f6ede", - "reference": "5961d02d48828671f5d8a7805e06579d692f6ede", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "psr/log": "~1.0" - }, - "conflict": { - "symfony/http-kernel": "<3.4" - }, - "require-dev": { - "symfony/http-kernel": "~3.4|~4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Debug\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Debug Component", - "homepage": "https://symfony.com", - "time": "2018-04-03T05:24:00+00:00" - }, { "name": "symfony/dependency-injection", "version": "v4.0.8", @@ -3960,65 +4302,6 @@ "homepage": "https://symfony.com", "time": "2018-04-04T05:10:37+00:00" }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.7.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b", - "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.7-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "time": "2018-01-30T19:27:44+00:00" - }, { "name": "symfony/process", "version": "v4.0.8", @@ -4068,74 +4351,6 @@ "homepage": "https://symfony.com", "time": "2018-04-03T05:24:00+00:00" }, - { - "name": "symfony/translation", - "version": "v4.0.8", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e20a9b7f9f62cb33a11638b345c248e7d510c938", - "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "symfony/config": "<3.4", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/intl": "~3.4|~4.0", - "symfony/yaml": "~3.4|~4.0" - }, - "suggest": { - "psr/log": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Translation Component", - "homepage": "https://symfony.com", - "time": "2018-02-22T10:50:29+00:00" - }, { "name": "symfony/yaml", "version": "v4.0.8", @@ -4283,221 +4498,6 @@ "validate" ], "time": "2018-01-29T19:49:41+00:00" - }, - { - "name": "webpatser/laravel-uuid", - "version": "2.2.1", - "source": { - "type": "git", - "url": "https://github.com/webpatser/laravel-uuid.git", - "reference": "c87d5c631938edad7aae96d27881e3ea3de23d80" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webpatser/laravel-uuid/zipball/c87d5c631938edad7aae96d27881e3ea3de23d80", - "reference": "c87d5c631938edad7aae96d27881e3ea3de23d80", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "fzaninotto/faker": "1.5.*", - "phpunit/phpunit": "4.7.*" - }, - "suggest": { - "paragonie/random_compat": "A random_bytes Php 5.x polyfill." - }, - "type": "library", - "extra": { - "laravel": { - "aliases": { - "Uuid": "Webpatser\\Uuid\\Uuid" - } - } - }, - "autoload": { - "psr-0": { - "Webpatser\\Uuid": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christoph Kempen", - "email": "christoph@downsized.nl" - } - ], - "description": "Class to generate a UUID according to the RFC 4122 standard. Support for version 1, 3, 4 and 5 UUID are built-in.", - "homepage": "https://github.com/webpatser/uuid", - "keywords": [ - "UUID RFC4122" - ], - "time": "2017-09-10T21:34:32+00:00" - }, - { - "name": "zackkitzmiller/tiny", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/zackkitzmiller/tiny-php.git", - "reference": "e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/zackkitzmiller/tiny-php/zipball/e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71", - "reference": "e023cc1ba14dafcb10372e8d9fb4ebdc43f1be71", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "league/phpunit-coverage-listener": "~1.1", - "phpunit/phpunit": "~3.7.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "ZackKitzmiller": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jacob DeHart" - }, - { - "name": "Kyle Bragger" - }, - { - "name": "Zack Kitzmiller", - "email": "zack@inrpce.com" - } - ], - "description": "A reversible base62 ID obfuscater.", - "time": "2017-02-07T15:14:28+00:00" - } - ], - "packages-dev": [ - { - "name": "hamcrest/hamcrest-php", - "version": "v2.0.0", - "source": { - "type": "git", - "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", - "shasum": "" - }, - "require": { - "php": "^5.3|^7.0" - }, - "replace": { - "cordoval/hamcrest-php": "*", - "davedevelopment/hamcrest-php": "*", - "kodova/hamcrest-php": "*" - }, - "require-dev": { - "phpunit/php-file-iterator": "1.3.3", - "phpunit/phpunit": "~4.0", - "satooshi/php-coveralls": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } - }, - "autoload": { - "classmap": [ - "hamcrest" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD" - ], - "description": "This is the PHP port of Hamcrest Matchers", - "keywords": [ - "test" - ], - "time": "2016-01-20T08:20:44+00:00" - }, - { - "name": "mockery/mockery", - "version": "1.0", - "source": { - "type": "git", - "url": "https://github.com/mockery/mockery.git", - "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38", - "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38", - "shasum": "" - }, - "require": { - "hamcrest/hamcrest-php": "~2.0", - "lib-pcre": ">=7.0", - "php": ">=5.6.0" - }, - "require-dev": { - "phpunit/phpunit": "~5.7|~6.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-0": { - "Mockery": "library/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Pádraic Brady", - "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" - }, - { - "name": "Dave Marshall", - "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.co.uk" - } - ], - "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", - "homepage": "http://github.com/mockery/mockery", - "keywords": [ - "BDD", - "TDD", - "library", - "mock", - "mock objects", - "mockery", - "stub", - "test", - "test double", - "testing" - ], - "time": "2017-10-06T16:20:43+00:00" } ], "aliases": [], @@ -4505,6 +4505,9 @@ "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, - "platform": [], - "platform-dev": [] + "platform": { + "php": ">=7.1" + }, + "platform-dev": [], + "plugin-api-version": "1.1.0" } diff --git a/database/migrations/.gitkeep b/database/migrations/.gitkeep old mode 100644 new mode 100755 diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php old mode 100644 new mode 100755 index 65d3d08..434ff2d --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -1,7 +1,7 @@ isValid($value)) { - throw new \Exception('Not a valid email'); + throw new Exception('Not a valid email'); } } diff --git a/src/Domain/Atoms/UnsignedIntegerAtom.php b/src/Domain/Atoms/UnsignedIntegerAtom.php old mode 100644 new mode 100755 diff --git a/src/Domain/Boundary/PersonFactory.php b/src/Domain/Boundary/PersonFactory.php old mode 100644 new mode 100755 diff --git a/src/Domain/Boundary/PersonRepository.php b/src/Domain/Boundary/PersonRepository.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/AttributeTrait.php b/src/Domain/Core/AttributeTrait.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/Author.php b/src/Domain/Core/Author.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/Collection.php b/src/Domain/Core/Collection.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/Composer.php b/src/Domain/Core/Composer.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/EntityInterface.php b/src/Domain/Core/EntityInterface.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/IdentityTrait.php b/src/Domain/Core/IdentityTrait.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/MultivalueAttribute.php b/src/Domain/Core/MultivalueAttribute.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/Person.php b/src/Domain/Core/Person.php old mode 100644 new mode 100755 index 540df7b..4b82317 --- a/src/Domain/Core/Person.php +++ b/src/Domain/Core/Person.php @@ -2,6 +2,7 @@ namespace XaiCorp\AbcParser\Domain\Core; use Enzyme\Axiom\Atoms\StringAtom; +use Exception; use Webpatser\Uuid\Uuid; use XaiCorp\AbcParser\Domain\Atoms\EmailAtom; @@ -69,7 +70,7 @@ class Person implements EntityInterface public function get($attribute) { if (!$this->has($attribute)) { - throw new \Exception('Cannot access attribute on person'); + throw new Exception('Cannot access attribute on person'); } return $this->{$attribute}; diff --git a/src/Domain/Core/Setting.php b/src/Domain/Core/Setting.php old mode 100644 new mode 100755 index 3c8f3e6..b8a94f2 --- a/src/Domain/Core/Setting.php +++ b/src/Domain/Core/Setting.php @@ -2,8 +2,6 @@ namespace XaiCorp\AbcParser\Domain\Core; -use Enzyme\Axiom\Atoms\StringAtom; - class Setting { use IdentityTrait; diff --git a/src/Domain/Core/Transcriber.php b/src/Domain/Core/Transcriber.php old mode 100644 new mode 100755 diff --git a/src/Domain/Core/Tune.php b/src/Domain/Core/Tune.php old mode 100644 new mode 100755 index 7c683f8..92b6cd2 --- a/src/Domain/Core/Tune.php +++ b/src/Domain/Core/Tune.php @@ -1,7 +1,6 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'A') { $this->builder->addAuthor($data); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Book.php b/src/Domain/Modules/Interpreter/Lexicon/Book.php old mode 100644 new mode 100755 index 3dba5a7..b5abb87 --- a/src/Domain/Modules/Interpreter/Lexicon/Book.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Book.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'B') { $this->builder->addBook(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Composer.php b/src/Domain/Modules/Interpreter/Lexicon/Composer.php old mode 100644 new mode 100755 index 47e2c7b..8b20fad --- a/src/Domain/Modules/Interpreter/Lexicon/Composer.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Composer.php @@ -1,10 +1,8 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'C') { $this->builder->addComposer($data); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Discography.php b/src/Domain/Modules/Interpreter/Lexicon/Discography.php old mode 100644 new mode 100755 index b9b4941..e1b01cf --- a/src/Domain/Modules/Interpreter/Lexicon/Discography.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Discography.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'D') { $this->builder->addDiscography(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/EndOfTune.php b/src/Domain/Modules/Interpreter/Lexicon/EndOfTune.php old mode 100644 new mode 100755 index 7d93318..936978f --- a/src/Domain/Modules/Interpreter/Lexicon/EndOfTune.php +++ b/src/Domain/Modules/Interpreter/Lexicon/EndOfTune.php @@ -1,10 +1,8 @@ current(); // list($key, $data) = $this->getKeyDataFromLine($line); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Filename.php b/src/Domain/Modules/Interpreter/Lexicon/Filename.php old mode 100644 new mode 100755 index a7a2bef..5615cd4 --- a/src/Domain/Modules/Interpreter/Lexicon/Filename.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Filename.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'F' && $context->getState() === $context::MODE_TUNE_HEADER diff --git a/src/Domain/Modules/Interpreter/Lexicon/Group.php b/src/Domain/Modules/Interpreter/Lexicon/Group.php old mode 100644 new mode 100755 index ed3f959..d41cc56 --- a/src/Domain/Modules/Interpreter/Lexicon/Group.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Group.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'G') { $this->builder->addGroup(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/History.php b/src/Domain/Modules/Interpreter/Lexicon/History.php old mode 100644 new mode 100755 index 2e836d2..aad5401 --- a/src/Domain/Modules/Interpreter/Lexicon/History.php +++ b/src/Domain/Modules/Interpreter/Lexicon/History.php @@ -1,10 +1,8 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'H' && $context->isState($context::MODE_TUNE_HEADER) @@ -56,8 +54,8 @@ class History implements Lex */ private function nextLineNotHistory(Context $context) { - $nextLine = $context->get($context->key() +1); - list($key, $data) = $this->getKeyDataFromLine($nextLine); + $nextLine = $context->get($context->key() + 1); + [$key, $data] = $this->getKeyDataFromLine($nextLine); return $key !== ''; } } diff --git a/src/Domain/Modules/Interpreter/Lexicon/Index.php b/src/Domain/Modules/Interpreter/Lexicon/Index.php old mode 100644 new mode 100755 index 984e435..40a8eff --- a/src/Domain/Modules/Interpreter/Lexicon/Index.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Index.php @@ -1,10 +1,9 @@ builder = $builder; } - public function handle(Context $context, \Closure $next) + public function handle(Context $context, Closure $next) { $line = $context->current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'X') { $context->setStateInTuneHeader(); diff --git a/src/Domain/Modules/Interpreter/Lexicon/KeySignature.php b/src/Domain/Modules/Interpreter/Lexicon/KeySignature.php old mode 100644 new mode 100755 index 37a74d5..10e8b63 --- a/src/Domain/Modules/Interpreter/Lexicon/KeySignature.php +++ b/src/Domain/Modules/Interpreter/Lexicon/KeySignature.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($context->getState() === $context::MODE_TUNE_HEADER && $key === 'K') { $this->builder->setKey(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Lex.php b/src/Domain/Modules/Interpreter/Lexicon/Lex.php old mode 100644 new mode 100755 diff --git a/src/Domain/Modules/Interpreter/Lexicon/LineKeyDataTrait.php b/src/Domain/Modules/Interpreter/Lexicon/LineKeyDataTrait.php old mode 100644 new mode 100755 diff --git a/src/Domain/Modules/Interpreter/Lexicon/Meter.php b/src/Domain/Modules/Interpreter/Lexicon/Meter.php old mode 100644 new mode 100755 index 973fbdc..a45c8e1 --- a/src/Domain/Modules/Interpreter/Lexicon/Meter.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Meter.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'M' && $context->getState() === $context::MODE_TUNE_HEADER diff --git a/src/Domain/Modules/Interpreter/Lexicon/MusicLine.php b/src/Domain/Modules/Interpreter/Lexicon/MusicLine.php old mode 100644 new mode 100755 index fe45ae2..5aeb1d3 --- a/src/Domain/Modules/Interpreter/Lexicon/MusicLine.php +++ b/src/Domain/Modules/Interpreter/Lexicon/MusicLine.php @@ -1,10 +1,8 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($context->getState() === $context::MODE_TUNE_BODY && $key !== 'K' diff --git a/src/Domain/Modules/Interpreter/Lexicon/NoteLength.php b/src/Domain/Modules/Interpreter/Lexicon/NoteLength.php old mode 100644 new mode 100755 index b2dd722..253e866 --- a/src/Domain/Modules/Interpreter/Lexicon/NoteLength.php +++ b/src/Domain/Modules/Interpreter/Lexicon/NoteLength.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'L') { $this->builder->addNoteLength(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Notes.php b/src/Domain/Modules/Interpreter/Lexicon/Notes.php old mode 100644 new mode 100755 index 274280d..2c98cfd --- a/src/Domain/Modules/Interpreter/Lexicon/Notes.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Notes.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'N') { $this->builder->addNote(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Origin.php b/src/Domain/Modules/Interpreter/Lexicon/Origin.php old mode 100644 new mode 100755 index 88b85e6..2ef5d63 --- a/src/Domain/Modules/Interpreter/Lexicon/Origin.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Origin.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'O') { $this->builder->addOrigin(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Parts.php b/src/Domain/Modules/Interpreter/Lexicon/Parts.php old mode 100644 new mode 100755 index 839b125..7a4a495 --- a/src/Domain/Modules/Interpreter/Lexicon/Parts.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Parts.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'P' && $context->getState() === $context::MODE_TUNE_HEADER diff --git a/src/Domain/Modules/Interpreter/Lexicon/Rhythm.php b/src/Domain/Modules/Interpreter/Lexicon/Rhythm.php old mode 100644 new mode 100755 index fe8004a..4fbaf48 --- a/src/Domain/Modules/Interpreter/Lexicon/Rhythm.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Rhythm.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'R' && $context->getState() === $context::MODE_TUNE_HEADER diff --git a/src/Domain/Modules/Interpreter/Lexicon/Source.php b/src/Domain/Modules/Interpreter/Lexicon/Source.php old mode 100644 new mode 100755 index 3cfe1d4..022d416 --- a/src/Domain/Modules/Interpreter/Lexicon/Source.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Source.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'S' && $context->getState() === $context::MODE_TUNE_HEADER diff --git a/src/Domain/Modules/Interpreter/Lexicon/Tempo.php b/src/Domain/Modules/Interpreter/Lexicon/Tempo.php old mode 100644 new mode 100755 index eda7ee0..be77377 --- a/src/Domain/Modules/Interpreter/Lexicon/Tempo.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Tempo.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'Q') { $this->builder->addTempo(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Title.php b/src/Domain/Modules/Interpreter/Lexicon/Title.php old mode 100644 new mode 100755 index ead49ef..cbec977 --- a/src/Domain/Modules/Interpreter/Lexicon/Title.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Title.php @@ -1,10 +1,8 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'T') { $this->builder->addTitle($data); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Transcriber.php b/src/Domain/Modules/Interpreter/Lexicon/Transcriber.php old mode 100644 new mode 100755 index 28cef88..52894a7 --- a/src/Domain/Modules/Interpreter/Lexicon/Transcriber.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Transcriber.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'Z') { $this->builder->addTranscriber(new StringAtom($data)); diff --git a/src/Domain/Modules/Interpreter/Lexicon/Words.php b/src/Domain/Modules/Interpreter/Lexicon/Words.php old mode 100644 new mode 100755 index 9d53f65..be7cf32 --- a/src/Domain/Modules/Interpreter/Lexicon/Words.php +++ b/src/Domain/Modules/Interpreter/Lexicon/Words.php @@ -1,10 +1,9 @@ current(); - list($key, $data) = $this->getKeyDataFromLine($line); + [$key, $data] = $this->getKeyDataFromLine($line); if ($key === 'W') { $this->builder->addWords(new StringAtom($data)); diff --git a/src/Interfaces/Builder.php b/src/Interfaces/Builder.php old mode 100644 new mode 100755 diff --git a/src/Interfaces/Exporter.php b/src/Interfaces/Exporter.php old mode 100644 new mode 100755 diff --git a/src/Interfaces/Manipulator.php b/src/Interfaces/Manipulator.php old mode 100644 new mode 100755 diff --git a/src/Traits/ValidationTrait.php b/src/Traits/ValidationTrait.php old mode 100644 new mode 100755 index 3669dc2..87e6c1a --- a/src/Traits/ValidationTrait.php +++ b/src/Traits/ValidationTrait.php @@ -1,8 +1,8 @@ save(), json_encode($model->getMessages())); + PHPUnit_Framework_Assert::assertTrue($model->save(), json_encode($model->getMessages())); } public function assertCanNotSave(Model $model, $message = '') { - \PHPUnit_Framework_Assert::assertNotTrue($model->save(), $message); + PHPUnit_Framework_Assert::assertNotTrue($model->save(), $message); } public function haveNotFinishedTest() { - \PHPUnit_Framework_Assert::markTestIncomplete(); + PHPUnit_Framework_Assert::markTestIncomplete(); } } diff --git a/tests/_support/Helper/Unit.php b/tests/_support/Helper/Unit.php old mode 100644 new mode 100755 index 6064d37..379e5d9 --- a/tests/_support/Helper/Unit.php +++ b/tests/_support/Helper/Unit.php @@ -4,7 +4,9 @@ namespace Helper; // here you can define custom actions // all public methods declared in helper class will be available in $I -class Unit extends \Codeception\Module +use Codeception\Module; + +class Unit extends Module { } diff --git a/tests/_support/UnitTester.php b/tests/_support/UnitTester.php old mode 100644 new mode 100755 index 2835357..a1c8d0b --- a/tests/_support/UnitTester.php +++ b/tests/_support/UnitTester.php @@ -1,5 +1,8 @@ getScenario()->runStep(new \Codeception\Step\Action('setHeader', func_get_args())); + return $this->getScenario()->runStep(new Action('setHeader', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -40,10 +43,10 @@ trait AcceptanceTesterActions * @see \Codeception\Module\PhpBrowser::amHttpAuthenticated() */ public function amHttpAuthenticated($username, $password) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amHttpAuthenticated', func_get_args())); + return $this->getScenario()->runStep(new Condition('amHttpAuthenticated', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -58,10 +61,10 @@ trait AcceptanceTesterActions * @see \Codeception\Module\PhpBrowser::amOnUrl() */ public function amOnUrl($url) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnUrl', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -86,10 +89,10 @@ trait AcceptanceTesterActions * @see \Codeception\Module\PhpBrowser::amOnSubdomain() */ public function amOnSubdomain($subdomain) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnSubdomain', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnSubdomain', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -113,10 +116,10 @@ trait AcceptanceTesterActions * @see \Codeception\Module\PhpBrowser::executeInGuzzle() */ public function executeInGuzzle($function) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('executeInGuzzle', func_get_args())); + return $this->getScenario()->runStep(new Action('executeInGuzzle', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -148,10 +151,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::haveHttpHeader() */ public function haveHttpHeader($name, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('haveHttpHeader', func_get_args())); + return $this->getScenario()->runStep(new Action('haveHttpHeader', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -173,10 +176,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::deleteHeader() */ public function deleteHeader($name) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteHeader', func_get_args())); + return $this->getScenario()->runStep(new Action('deleteHeader', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -194,10 +197,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::amOnPage() */ public function amOnPage($page) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnPage', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnPage', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -233,10 +236,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::click() */ public function click($link, $context = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('click', func_get_args())); + return $this->getScenario()->runStep(new Action('click', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -273,7 +276,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::see() */ public function canSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('see', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('see', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -310,10 +313,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::see() */ public function see($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('see', func_get_args())); + return $this->getScenario()->runStep(new Assertion('see', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -348,7 +351,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSee() */ public function cantSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSee', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSee', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -383,10 +386,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSee() */ public function dontSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSee', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSee', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -403,7 +406,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInSource() */ public function canSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInSource', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInSource', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -420,10 +423,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInSource() */ public function seeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInSource', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInSource', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -440,7 +443,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInSource() */ public function cantSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInSource', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInSource', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -457,10 +460,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInSource() */ public function dontSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInSource', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInSource', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -480,7 +483,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeLink() */ public function canSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeLink', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeLink', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -500,10 +503,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeLink() */ public function seeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeLink', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeLink', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -523,7 +526,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeLink() */ public function cantSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeLink', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeLink', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -543,10 +546,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeLink() */ public function dontSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeLink', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeLink', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -566,7 +569,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl() */ public function canSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInCurrentUrl', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -586,10 +589,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl() */ public function seeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -606,7 +609,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl() */ public function cantSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInCurrentUrl', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -623,10 +626,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl() */ public function dontSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -645,7 +648,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals() */ public function canSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentUrlEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -664,10 +667,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals() */ public function seeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentUrlEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -686,7 +689,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals() */ public function cantSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCurrentUrlEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -705,10 +708,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals() */ public function dontSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCurrentUrlEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -726,7 +729,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches() */ public function canSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentUrlMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -744,10 +747,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches() */ public function seeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentUrlMatches', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -765,7 +768,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches() */ public function cantSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCurrentUrlMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -783,10 +786,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches() */ public function dontSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCurrentUrlMatches', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -806,10 +809,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabFromCurrentUrl() */ public function grabFromCurrentUrl($uri = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabFromCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Action('grabFromCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -828,7 +831,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked() */ public function canSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCheckboxIsChecked', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -847,10 +850,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked() */ public function seeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCheckboxIsChecked', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -868,7 +871,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked() */ public function cantSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCheckboxIsChecked', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -886,10 +889,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked() */ public function dontSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCheckboxIsChecked', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -913,7 +916,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInField() */ public function canSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInField', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInField', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -937,10 +940,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInField() */ public function seeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInField', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -964,7 +967,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInField() */ public function cantSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInField', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInField', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -988,10 +991,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInField() */ public function dontSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInField', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1058,7 +1061,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInFormFields() */ public function canSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInFormFields', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1125,10 +1128,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInFormFields() */ public function seeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInFormFields', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1175,7 +1178,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields() */ public function cantSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInFormFields', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1222,10 +1225,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields() */ public function dontSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInFormFields', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1401,10 +1404,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::submitForm() */ public function submitForm($selector, $params, $button = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('submitForm', func_get_args())); + return $this->getScenario()->runStep(new Action('submitForm', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1422,10 +1425,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::fillField() */ public function fillField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('fillField', func_get_args())); + return $this->getScenario()->runStep(new Action('fillField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1461,10 +1464,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::selectOption() */ public function selectOption($select, $option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('selectOption', func_get_args())); + return $this->getScenario()->runStep(new Action('selectOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1480,10 +1483,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::checkOption() */ public function checkOption($option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('checkOption', func_get_args())); + return $this->getScenario()->runStep(new Action('checkOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1499,10 +1502,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::uncheckOption() */ public function uncheckOption($option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('uncheckOption', func_get_args())); + return $this->getScenario()->runStep(new Action('uncheckOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1520,10 +1523,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::attachFile() */ public function attachFile($field, $filename) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('attachFile', func_get_args())); + return $this->getScenario()->runStep(new Action('attachFile', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1537,10 +1540,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxGetRequest() */ public function sendAjaxGetRequest($uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxGetRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxGetRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1565,10 +1568,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxPostRequest() */ public function sendAjaxPostRequest($uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxPostRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxPostRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1591,10 +1594,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxRequest() */ public function sendAjaxRequest($method, $uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1616,10 +1619,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabTextFrom() */ public function grabTextFrom($cssOrXPathOrRegex) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabTextFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabTextFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1640,10 +1643,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabAttributeFrom() */ public function grabAttributeFrom($cssOrXpath, $attribute) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabAttributeFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabAttributeFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1672,10 +1675,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabMultiple() */ public function grabMultiple($cssOrXpath, $attribute = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabMultiple', func_get_args())); + return $this->getScenario()->runStep(new Action('grabMultiple', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1685,10 +1688,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabValueFrom() */ public function grabValueFrom($field) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabValueFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabValueFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1709,10 +1712,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::setCookie() */ public function setCookie($name, $val, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('setCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('setCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1726,10 +1729,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabCookie() */ public function grabCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('grabCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1741,10 +1744,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::grabPageSource() */ public function grabPageSource() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabPageSource', func_get_args())); + return $this->getScenario()->runStep(new Action('grabPageSource', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1764,7 +1767,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCookie() */ public function canSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCookie', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCookie', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1784,10 +1787,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeCookie() */ public function seeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCookie', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1802,7 +1805,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCookie() */ public function cantSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCookie', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCookie', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1817,10 +1820,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCookie() */ public function dontSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCookie', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1834,10 +1837,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::resetCookie() */ public function resetCookie($name, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('resetCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('resetCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1863,7 +1866,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeElement() */ public function canSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeElement', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeElement', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1889,10 +1892,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeElement() */ public function seeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeElement', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeElement', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1914,7 +1917,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeElement() */ public function cantSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeElement', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeElement', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1936,10 +1939,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeElement() */ public function dontSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeElement', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeElement', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1957,7 +1960,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements() */ public function canSeeNumberOfElements($selector, $expected) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberOfElements', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeNumberOfElements', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1975,10 +1978,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements() */ public function seeNumberOfElements($selector, $expected) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberOfElements', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeNumberOfElements', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1998,7 +2001,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected() */ public function canSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeOptionIsSelected', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2018,10 +2021,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected() */ public function seeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeOptionIsSelected', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2041,7 +2044,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected() */ public function cantSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeOptionIsSelected', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2061,10 +2064,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected() */ public function dontSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeOptionIsSelected', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2073,7 +2076,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seePageNotFound() */ public function canSeePageNotFound() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePageNotFound', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seePageNotFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2082,10 +2085,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seePageNotFound() */ public function seePageNotFound() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePageNotFound', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seePageNotFound', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2104,7 +2107,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs() */ public function canSeeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeResponseCodeIs', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2123,10 +2126,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs() */ public function seeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeResponseCodeIs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2144,7 +2147,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeResponseCodeIs() */ public function cantSeeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeResponseCodeIs', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2162,10 +2165,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeResponseCodeIs() */ public function dontSeeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeResponseCodeIs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2184,7 +2187,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInTitle() */ public function canSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInTitle', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInTitle', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2203,10 +2206,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::seeInTitle() */ public function seeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInTitle', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInTitle', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2219,7 +2222,7 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle() */ public function cantSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInTitle', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInTitle', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2232,10 +2235,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle() */ public function dontSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInTitle', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInTitle', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2256,10 +2259,10 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::switchToIframe() */ public function switchToIframe($name) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('switchToIframe', func_get_args())); + return $this->getScenario()->runStep(new Action('switchToIframe', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2269,6 +2272,6 @@ trait AcceptanceTesterActions * @see \Codeception\Lib\InnerBrowser::moveBack() */ public function moveBack($numberOfSteps = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('moveBack', func_get_args())); + return $this->getScenario()->runStep(new Action('moveBack', func_get_args())); } } diff --git a/tests/_support/_generated/FunctionalTesterActions.php b/tests/_support/_generated/FunctionalTesterActions.php old mode 100644 new mode 100755 index bd9925a..098cd13 --- a/tests/_support/_generated/FunctionalTesterActions.php +++ b/tests/_support/_generated/FunctionalTesterActions.php @@ -5,8 +5,11 @@ namespace _generated; // You should not change it manually as it will be overwritten on next build // @codingStandardsIgnoreFile +use Codeception\Step\Action; +use Codeception\Step\Assertion; +use Codeception\Step\Condition; +use Codeception\Step\ConditionalAssertion; use Helper\Functional; -use Codeception\Module\Laravel5; trait FunctionalTesterActions { @@ -15,7 +18,7 @@ trait FunctionalTesterActions */ abstract protected function getScenario(); - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -25,10 +28,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::getApplication() */ public function getApplication() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('getApplication', func_get_args())); + return $this->getScenario()->runStep(new Action('getApplication', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -36,10 +39,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::setApplication() */ public function setApplication($app) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('setApplication', func_get_args())); + return $this->getScenario()->runStep(new Action('setApplication', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -53,10 +56,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::disableMiddleware() */ public function disableMiddleware() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('disableMiddleware', func_get_args())); + return $this->getScenario()->runStep(new Action('disableMiddleware', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -70,10 +73,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::disableEvents() */ public function disableEvents() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('disableEvents', func_get_args())); + return $this->getScenario()->runStep(new Action('disableEvents', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -92,7 +95,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeEventTriggered() */ public function canSeeEventTriggered($events) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeEventTriggered', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeEventTriggered', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -111,10 +114,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeEventTriggered() */ public function seeEventTriggered($events) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeEventTriggered', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeEventTriggered', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -133,7 +136,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeEventTriggered() */ public function cantSeeEventTriggered($events) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeEventTriggered', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeEventTriggered', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -152,10 +155,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeEventTriggered() */ public function dontSeeEventTriggered($events) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeEventTriggered', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeEventTriggered', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -172,10 +175,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::amOnRoute() */ public function amOnRoute($routeName, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnRoute', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnRoute', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -191,7 +194,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeCurrentRouteIs() */ public function canSeeCurrentRouteIs($routeName) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentRouteIs', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentRouteIs', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -207,10 +210,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeCurrentRouteIs() */ public function seeCurrentRouteIs($routeName) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentRouteIs', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentRouteIs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -227,10 +230,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::amOnAction() */ public function amOnAction($action, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnAction', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnAction', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -247,7 +250,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeCurrentActionIs() */ public function canSeeCurrentActionIs($action) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentActionIs', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentActionIs', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -264,10 +267,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeCurrentActionIs() */ public function seeCurrentActionIs($action) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentActionIs', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentActionIs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -287,7 +290,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeInSession() */ public function canSeeInSession($key, $value = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInSession', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInSession', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -307,10 +310,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeInSession() */ public function seeInSession($key, $value = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInSession', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInSession', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -329,7 +332,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeSessionHasValues() */ public function canSeeSessionHasValues($bindings) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeSessionHasValues', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeSessionHasValues', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -348,10 +351,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeSessionHasValues() */ public function seeSessionHasValues($bindings) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeSessionHasValues', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeSessionHasValues', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -368,7 +371,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormHasErrors() */ public function canSeeFormHasErrors() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFormHasErrors', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeFormHasErrors', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -385,10 +388,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormHasErrors() */ public function seeFormHasErrors() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFormHasErrors', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeFormHasErrors', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -405,7 +408,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeFormErrors() */ public function cantSeeFormErrors() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeFormErrors', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeFormErrors', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -422,10 +425,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeFormErrors() */ public function dontSeeFormErrors() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeFormErrors', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeFormErrors', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -446,7 +449,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormErrorMessages() */ public function canSeeFormErrorMessages($bindings) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFormErrorMessages', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeFormErrorMessages', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -467,10 +470,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormErrorMessages() */ public function seeFormErrorMessages($bindings) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFormErrorMessages', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeFormErrorMessages', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -494,7 +497,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormErrorMessage() */ public function canSeeFormErrorMessage($key, $expectedErrorMessage = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFormErrorMessage', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeFormErrorMessage', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -518,10 +521,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeFormErrorMessage() */ public function seeFormErrorMessage($key, $expectedErrorMessage = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFormErrorMessage', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeFormErrorMessage', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -546,10 +549,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::amLoggedAs() */ public function amLoggedAs($user, $driver = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amLoggedAs', func_get_args())); + return $this->getScenario()->runStep(new Condition('amLoggedAs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -557,10 +560,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::logout() */ public function logout() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('logout', func_get_args())); + return $this->getScenario()->runStep(new Action('logout', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -569,7 +572,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeAuthentication() */ public function canSeeAuthentication() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeAuthentication', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeAuthentication', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -578,10 +581,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeAuthentication() */ public function seeAuthentication() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeAuthentication', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeAuthentication', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -590,7 +593,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeAuthentication() */ public function cantSeeAuthentication() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeAuthentication', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeAuthentication', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -599,10 +602,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeAuthentication() */ public function dontSeeAuthentication() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeAuthentication', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeAuthentication', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -629,10 +632,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::grabService() */ public function grabService($class) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabService', func_get_args())); + return $this->getScenario()->runStep(new Action('grabService', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -651,10 +654,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::haveRecord() */ public function haveRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('haveRecord', func_get_args())); + return $this->getScenario()->runStep(new Action('haveRecord', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -673,7 +676,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeRecord() */ public function canSeeRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeRecord', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeRecord', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -692,10 +695,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::seeRecord() */ public function seeRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeRecord', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeRecord', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -714,7 +717,7 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeRecord() */ public function cantSeeRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeRecord', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeRecord', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -733,10 +736,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::dontSeeRecord() */ public function dontSeeRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeRecord', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeRecord', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -755,10 +758,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::grabRecord() */ public function grabRecord($tableName, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabRecord', func_get_args())); + return $this->getScenario()->runStep(new Action('grabRecord', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -766,10 +769,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::haveModel() */ public function haveModel($model, $attributes = null, $name = null, $times = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('haveModel', func_get_args())); + return $this->getScenario()->runStep(new Action('haveModel', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -794,10 +797,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::createModel() */ public function createModel($model, $attributes = null, $name = null, $times = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('createModel', func_get_args())); + return $this->getScenario()->runStep(new Action('createModel', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -822,10 +825,10 @@ trait FunctionalTesterActions * @see \Codeception\Module\Laravel5::makeModel() */ public function makeModel($model, $attributes = null, $name = null, $times = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('makeModel', func_get_args())); + return $this->getScenario()->runStep(new Action('makeModel', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -836,10 +839,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::amHttpAuthenticated() */ public function amHttpAuthenticated($username, $password) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amHttpAuthenticated', func_get_args())); + return $this->getScenario()->runStep(new Condition('amHttpAuthenticated', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -857,10 +860,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::amOnPage() */ public function amOnPage($page) { - return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnPage', func_get_args())); + return $this->getScenario()->runStep(new Condition('amOnPage', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -896,16 +899,16 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::click() */ public function click($link, $context = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('click', func_get_args())); + return $this->getScenario()->runStep(new Action('click', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that the current page contains the given string (case insensitive). - * - * You can specify a specific HTML element (via CSS or XPath) as the second + * + * You can specify a specific HTML element (via CSS or XPath) as the second * parameter to only search within that element. * * ``` php @@ -914,19 +917,19 @@ trait FunctionalTesterActions * $I->see('Sign Up', 'h1'); // I can suppose it's a signup page * $I->see('Sign Up', '//body/h1'); // with XPath * ``` - * + * * Note that the search is done after stripping all HTML tags from the body, * so `$I->see('strong')` will return true for strings like: - * + * * - `

I am Stronger than thou

` * - `` - * + * * But will *not* be true for strings like: - * + * * - `Home` * - `
Home` * - `` - * + * * For checking the raw source code, use `seeInSource()`. * * @param $text @@ -935,14 +938,15 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::see() */ public function canSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('see', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('see', func_get_args())); } + /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that the current page contains the given string (case insensitive). - * - * You can specify a specific HTML element (via CSS or XPath) as the second + * + * You can specify a specific HTML element (via CSS or XPath) as the second * parameter to only search within that element. * * ``` php @@ -951,19 +955,19 @@ trait FunctionalTesterActions * $I->see('Sign Up', 'h1'); // I can suppose it's a signup page * $I->see('Sign Up', '//body/h1'); // with XPath * ``` - * + * * Note that the search is done after stripping all HTML tags from the body, * so `$I->see('strong')` will return true for strings like: - * + * * - `

I am Stronger than thou

` * - `` - * + * * But will *not* be true for strings like: - * + * * - `Home` * - `
Home` * - `` - * + * * For checking the raw source code, use `seeInSource()`. * * @param $text @@ -971,10 +975,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::see() */ public function see($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('see', func_get_args())); + return $this->getScenario()->runStep(new Assertion('see', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -987,19 +991,19 @@ trait FunctionalTesterActions * $I->dontSee('Sign Up','h1'); // I can suppose it's not a signup page * $I->dontSee('Sign Up','//body/h1'); // with XPath * ``` - * + * * Note that the search is done after stripping all HTML tags from the body, * so `$I->dontSee('strong')` will fail on strings like: - * + * * - `

I am Stronger than thou

` * - `` - * + * * But will ignore strings like: - * + * * - `Home` * - `
Home` * - `` - * + * * For checking the raw source code, use `seeInSource()`. * * @param $text @@ -1008,7 +1012,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSee() */ public function cantSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSee', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSee', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1022,19 +1026,19 @@ trait FunctionalTesterActions * $I->dontSee('Sign Up','h1'); // I can suppose it's not a signup page * $I->dontSee('Sign Up','//body/h1'); // with XPath * ``` - * + * * Note that the search is done after stripping all HTML tags from the body, * so `$I->dontSee('strong')` will fail on strings like: - * + * * - `

I am Stronger than thou

` * - `` - * + * * But will ignore strings like: - * + * * - `Home` * - `
Home` * - `` - * + * * For checking the raw source code, use `seeInSource()`. * * @param $text @@ -1042,10 +1046,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSee() */ public function dontSee($text, $selector = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSee', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSee', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1062,7 +1066,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInSource() */ public function canSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInSource', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInSource', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1079,10 +1083,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInSource() */ public function seeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInSource', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInSource', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1099,7 +1103,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInSource() */ public function cantSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInSource', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInSource', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1116,10 +1120,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInSource() */ public function dontSeeInSource($raw) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInSource', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInSource', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1139,7 +1143,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeLink() */ public function canSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeLink', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeLink', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1159,10 +1163,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeLink() */ public function seeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeLink', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeLink', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1182,7 +1186,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeLink() */ public function cantSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeLink', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeLink', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1202,10 +1206,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeLink() */ public function dontSeeLink($text, $url = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeLink', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeLink', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1225,7 +1229,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl() */ public function canSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInCurrentUrl', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1245,10 +1249,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl() */ public function seeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1265,7 +1269,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl() */ public function cantSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInCurrentUrl', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1282,10 +1286,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl() */ public function dontSeeInCurrentUrl($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1304,7 +1308,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals() */ public function canSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentUrlEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1323,10 +1327,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals() */ public function seeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentUrlEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1345,7 +1349,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals() */ public function cantSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCurrentUrlEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1364,10 +1368,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals() */ public function dontSeeCurrentUrlEquals($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlEquals', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCurrentUrlEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1385,7 +1389,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches() */ public function canSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCurrentUrlMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1403,10 +1407,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches() */ public function seeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCurrentUrlMatches', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1424,7 +1428,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches() */ public function cantSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCurrentUrlMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1442,10 +1446,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches() */ public function dontSeeCurrentUrlMatches($uri) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlMatches', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCurrentUrlMatches', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1465,10 +1469,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::grabFromCurrentUrl() */ public function grabFromCurrentUrl($uri = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabFromCurrentUrl', func_get_args())); + return $this->getScenario()->runStep(new Action('grabFromCurrentUrl', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1487,7 +1491,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked() */ public function canSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCheckboxIsChecked', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1506,10 +1510,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked() */ public function seeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCheckboxIsChecked', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1527,7 +1531,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked() */ public function cantSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCheckboxIsChecked', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1545,10 +1549,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked() */ public function dontSeeCheckboxIsChecked($checkbox) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCheckboxIsChecked', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCheckboxIsChecked', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1572,7 +1576,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInField() */ public function canSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInField', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInField', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1596,10 +1600,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInField() */ public function seeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInField', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1623,7 +1627,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInField() */ public function cantSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInField', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInField', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -1647,16 +1651,16 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInField() */ public function dontSeeInField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInField', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if the array of form parameters (name => value) are set on the form matched with the * passed selector. - * + * * ``` php * seeInFormFields('form[name=myform]', [ @@ -1665,10 +1669,10 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * For multi-select elements, or to check values of multiple elements with the same name, an * array may be passed: - * + * * ``` php * seeInFormFields('.form-class', [ @@ -1685,7 +1689,7 @@ trait FunctionalTesterActions * ``` * * Additionally, checkbox values can be checked with a boolean. - * + * * ``` php * seeInFormFields('#form-id', [ @@ -1694,9 +1698,9 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * Pair this with submitForm for quick testing magic. - * + * * ``` php * seeInFormFields('//form[@id=my-form]', $form); * ?> * ``` - * + * * @param $formSelector * @param $params * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Lib\InnerBrowser::seeInFormFields() */ public function canSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInFormFields', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if the array of form parameters (name => value) are set on the form matched with the * passed selector. - * + * * ``` php * seeInFormFields('form[name=myform]', [ @@ -1733,10 +1737,10 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * For multi-select elements, or to check values of multiple elements with the same name, an * array may be passed: - * + * * ``` php * seeInFormFields('.form-class', [ @@ -1753,7 +1757,7 @@ trait FunctionalTesterActions * ``` * * Additionally, checkbox values can be checked with a boolean. - * + * * ``` php * seeInFormFields('#form-id', [ @@ -1762,9 +1766,9 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * Pair this with submitForm for quick testing magic. - * + * * ``` php * seeInFormFields('//form[@id=my-form]', $form); * ?> * ``` - * + * * @param $formSelector * @param $params * @see \Codeception\Lib\InnerBrowser::seeInFormFields() */ public function seeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInFormFields', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if the array of form parameters (name => value) are not set on the form matched with * the passed selector. - * + * * ``` php * dontSeeInFormFields('form[name=myform]', [ @@ -1802,10 +1806,10 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * To check that an element hasn't been assigned any one of many values, an array can be passed * as the value: - * + * * ``` php * dontSeeInFormFields('.form-class', [ @@ -1818,7 +1822,7 @@ trait FunctionalTesterActions * ``` * * Additionally, checkbox values can be checked with a boolean. - * + * * ``` php * dontSeeInFormFields('#form-id', [ @@ -1827,21 +1831,21 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * @param $formSelector * @param $params * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields() */ public function cantSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInFormFields', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if the array of form parameters (name => value) are not set on the form matched with * the passed selector. - * + * * ``` php * dontSeeInFormFields('form[name=myform]', [ @@ -1850,10 +1854,10 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * To check that an element hasn't been assigned any one of many values, an array can be passed * as the value: - * + * * ``` php * dontSeeInFormFields('.form-class', [ @@ -1866,7 +1870,7 @@ trait FunctionalTesterActions * ``` * * Additionally, checkbox values can be checked with a boolean. - * + * * ``` php * dontSeeInFormFields('#form-id', [ @@ -1875,16 +1879,16 @@ trait FunctionalTesterActions * ]); * ?> * ``` - * + * * @param $formSelector * @param $params * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields() */ public function dontSeeInFormFields($formSelector, $params) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInFormFields', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInFormFields', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -1892,18 +1896,18 @@ trait FunctionalTesterActions * values. Pass the form field's values as an array in the second * parameter. * - * Although this function can be used as a short-hand version of - * `fillField()`, `selectOption()`, `click()` etc. it has some important + * Although this function can be used as a short-hand version of + * `fillField()`, `selectOption()`, `click()` etc. it has some important * differences: - * + * * * Only field *names* may be used, not CSS/XPath selectors nor field labels * * If a field is sent to this function that does *not* exist on the page, * it will silently be added to the HTTP request. This is helpful for testing * some types of forms, but be aware that you will *not* get an exception * like you would if you called `fillField()` or `selectOption()` with * a missing field. - * - * Fields that are not provided will be filled by their values from the page, + * + * Fields that are not provided will be filled by their values from the page, * or from any previous calls to `fillField()`, `selectOption()` etc. * You don't need to click the 'Submit' button afterwards. * This command itself triggers the request to form's action. @@ -1966,10 +1970,10 @@ trait FunctionalTesterActions * ``` * Note that "2" will be the submitted value for the "plan" field, as it is * the selected option. - * + * * You can also emulate a JavaScript submission by not specifying any * buttons in the third parameter to submitForm. - * + * * ```php * submitForm( @@ -1983,10 +1987,10 @@ trait FunctionalTesterActions * ] * ); * ``` - * - * This function works well when paired with `seeInFormFields()` + * + * This function works well when paired with `seeInFormFields()` * for quickly testing CRUD interfaces and form validation logic. - * + * * ``` php * 'another value', // 'field[]' is already a defined key * ]); * ``` - * + * * The solution is to pass an array value: - * + * * ```php * getScenario()->runStep(new \Codeception\Step\Action('submitForm', func_get_args())); + return $this->getScenario()->runStep(new Action('submitForm', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2081,10 +2085,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::fillField() */ public function fillField($field, $value) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('fillField', func_get_args())); + return $this->getScenario()->runStep(new Action('fillField', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2111,10 +2115,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::selectOption() */ public function selectOption($select, $option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('selectOption', func_get_args())); + return $this->getScenario()->runStep(new Action('selectOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2130,10 +2134,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::checkOption() */ public function checkOption($option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('checkOption', func_get_args())); + return $this->getScenario()->runStep(new Action('checkOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2149,10 +2153,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::uncheckOption() */ public function uncheckOption($option) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('uncheckOption', func_get_args())); + return $this->getScenario()->runStep(new Action('uncheckOption', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2170,10 +2174,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::attachFile() */ public function attachFile($field, $filename) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('attachFile', func_get_args())); + return $this->getScenario()->runStep(new Action('attachFile', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2187,10 +2191,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxGetRequest() */ public function sendAjaxGetRequest($uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxGetRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxGetRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2215,10 +2219,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxPostRequest() */ public function sendAjaxPostRequest($uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxPostRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxPostRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2241,10 +2245,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::sendAjaxRequest() */ public function sendAjaxRequest($method, $uri, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxRequest', func_get_args())); + return $this->getScenario()->runStep(new Action('sendAjaxRequest', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2265,10 +2269,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::grabTextFrom() */ public function grabTextFrom($cssOrXPathOrRegex) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabTextFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabTextFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2289,42 +2293,42 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::grabAttributeFrom() */ public function grabAttributeFrom($cssOrXpath, $attribute) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabAttributeFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabAttributeFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * * Grabs either the text content, or attribute values, of nodes * matched by $cssOrXpath and returns them as an array. - * + * * ```html * First * Second * Third * ``` - * + * * ```php * grabMultiple('a'); - * + * * // would return ['#first', '#second', '#third'] * $aLinks = $I->grabMultiple('a', 'href'); * ?> * ``` - * + * * @param $cssOrXpath * @param $attribute * @return string[] * @see \Codeception\Lib\InnerBrowser::grabMultiple() */ public function grabMultiple($cssOrXpath, $attribute = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabMultiple', func_get_args())); + return $this->getScenario()->runStep(new Action('grabMultiple', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2334,10 +2338,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::grabValueFrom() */ public function grabValueFrom($field) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabValueFrom', func_get_args())); + return $this->getScenario()->runStep(new Action('grabValueFrom', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2358,10 +2362,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::setCookie() */ public function setCookie($name, $val, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('setCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('setCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2375,10 +2379,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::grabCookie() */ public function grabCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('grabCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('grabCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2398,7 +2402,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCookie() */ public function canSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCookie', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeCookie', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2418,10 +2422,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeCookie() */ public function seeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCookie', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2436,7 +2440,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCookie() */ public function cantSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCookie', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeCookie', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2451,10 +2455,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeCookie() */ public function dontSeeCookie($cookie, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCookie', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2468,10 +2472,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::resetCookie() */ public function resetCookie($name, $params = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('resetCookie', func_get_args())); + return $this->getScenario()->runStep(new Action('resetCookie', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2497,7 +2501,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeElement() */ public function canSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeElement', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeElement', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2523,10 +2527,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeElement() */ public function seeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeElement', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeElement', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2548,7 +2552,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeElement() */ public function cantSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeElement', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeElement', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2570,10 +2574,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeElement() */ public function dontSeeElement($selector, $attributes = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeElement', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeElement', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2593,7 +2597,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements() */ public function canSeeNumberOfElements($selector, $expected) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberOfElements', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeNumberOfElements', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2613,10 +2617,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements() */ public function seeNumberOfElements($selector, $expected) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberOfElements', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeNumberOfElements', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2636,7 +2640,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected() */ public function canSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeOptionIsSelected', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2656,10 +2660,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected() */ public function seeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeOptionIsSelected', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2679,7 +2683,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected() */ public function cantSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeOptionIsSelected', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2699,10 +2703,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected() */ public function dontSeeOptionIsSelected($selector, $optionText) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeOptionIsSelected', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeOptionIsSelected', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2711,7 +2715,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seePageNotFound() */ public function canSeePageNotFound() { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePageNotFound', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seePageNotFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2720,10 +2724,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seePageNotFound() */ public function seePageNotFound() { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePageNotFound', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seePageNotFound', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2736,7 +2740,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs() */ public function canSeeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeResponseCodeIs', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2749,10 +2753,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs() */ public function seeResponseCodeIs($code) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeResponseCodeIs', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeResponseCodeIs', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2771,7 +2775,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInTitle() */ public function canSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInTitle', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('seeInTitle', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2790,10 +2794,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::seeInTitle() */ public function seeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInTitle', func_get_args())); + return $this->getScenario()->runStep(new Assertion('seeInTitle', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2806,7 +2810,7 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle() */ public function cantSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInTitle', func_get_args())); + return $this->getScenario()->runStep(new ConditionalAssertion('dontSeeInTitle', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. @@ -2819,10 +2823,10 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle() */ public function dontSeeInTitle($title) { - return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInTitle', func_get_args())); + return $this->getScenario()->runStep(new Assertion('dontSeeInTitle', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -2843,19 +2847,19 @@ trait FunctionalTesterActions * @see \Codeception\Lib\InnerBrowser::switchToIframe() */ public function switchToIframe($name) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('switchToIframe', func_get_args())); + return $this->getScenario()->runStep(new Action('switchToIframe', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * * Moves back in history. - * + * * @param int $numberOfSteps (default value 1) * @see \Codeception\Lib\InnerBrowser::moveBack() */ public function moveBack($numberOfSteps = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('moveBack', func_get_args())); + return $this->getScenario()->runStep(new Action('moveBack', func_get_args())); } } diff --git a/tests/_support/_generated/UnitTesterActions.php b/tests/_support/_generated/UnitTesterActions.php old mode 100644 new mode 100755 index c723643..68bbd70 --- a/tests/_support/_generated/UnitTesterActions.php +++ b/tests/_support/_generated/UnitTesterActions.php @@ -5,6 +5,8 @@ namespace _generated; // You should not change it manually as it will be overwritten on next build // @codingStandardsIgnoreFile +use Codeception\Step\Action; + trait UnitTesterActions { /** @@ -12,7 +14,7 @@ trait UnitTesterActions */ abstract protected function getScenario(); - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -39,10 +41,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertEquals() */ public function assertEquals($expected, $actual, $message = null, $delta = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEquals', func_get_args())); + return $this->getScenario()->runStep(new Action('assertEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -69,10 +71,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotEquals() */ public function assertNotEquals($expected, $actual, $message = null, $delta = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEquals', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -84,10 +86,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertSame() */ public function assertSame($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertSame', func_get_args())); + return $this->getScenario()->runStep(new Action('assertSame', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -99,10 +101,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotSame() */ public function assertNotSame($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotSame', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotSame', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -114,10 +116,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertGreaterThan() */ public function assertGreaterThan($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThan', func_get_args())); + return $this->getScenario()->runStep(new Action('assertGreaterThan', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -129,10 +131,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertGreaterThanOrEqual() */ public function assertGreaterThanOrEqual($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThanOrEqual', func_get_args())); + return $this->getScenario()->runStep(new Action('assertGreaterThanOrEqual', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -144,10 +146,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertLessThan() */ public function assertLessThan($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThan', func_get_args())); + return $this->getScenario()->runStep(new Action('assertLessThan', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -159,10 +161,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertLessThanOrEqual() */ public function assertLessThanOrEqual($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThanOrEqual', func_get_args())); + return $this->getScenario()->runStep(new Action('assertLessThanOrEqual', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -174,10 +176,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertContains() */ public function assertContains($needle, $haystack, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContains', func_get_args())); + return $this->getScenario()->runStep(new Action('assertContains', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -189,10 +191,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotContains() */ public function assertNotContains($needle, $haystack, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotContains', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotContains', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -204,10 +206,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertRegExp() */ public function assertRegExp($pattern, $string, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertRegExp', func_get_args())); + return $this->getScenario()->runStep(new Action('assertRegExp', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -219,10 +221,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotRegExp() */ public function assertNotRegExp($pattern, $string, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotRegExp', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotRegExp', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -234,10 +236,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertStringStartsWith() */ public function assertStringStartsWith($prefix, $string, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertStringStartsWith', func_get_args())); + return $this->getScenario()->runStep(new Action('assertStringStartsWith', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -249,10 +251,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertStringStartsNotWith() */ public function assertStringStartsNotWith($prefix, $string, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertStringStartsNotWith', func_get_args())); + return $this->getScenario()->runStep(new Action('assertStringStartsNotWith', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -263,10 +265,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertEmpty() */ public function assertEmpty($actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args())); + return $this->getScenario()->runStep(new Action('assertEmpty', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -277,10 +279,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotEmpty() */ public function assertNotEmpty($actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEmpty', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotEmpty', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -291,10 +293,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNull() */ public function assertNull($actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNull', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNull', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -305,10 +307,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotNull() */ public function assertNotNull($actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotNull', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotNull', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -319,10 +321,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertTrue() */ public function assertTrue($condition, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertTrue', func_get_args())); + return $this->getScenario()->runStep(new Action('assertTrue', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -333,10 +335,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertFalse() */ public function assertFalse($condition, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFalse', func_get_args())); + return $this->getScenario()->runStep(new Action('assertFalse', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -347,10 +349,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertFileExists() */ public function assertFileExists($filename, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileExists', func_get_args())); + return $this->getScenario()->runStep(new Action('assertFileExists', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -361,10 +363,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertFileNotExists() */ public function assertFileNotExists($filename, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotExists', func_get_args())); + return $this->getScenario()->runStep(new Action('assertFileNotExists', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -374,10 +376,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertGreaterOrEquals() */ public function assertGreaterOrEquals($expected, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterOrEquals', func_get_args())); + return $this->getScenario()->runStep(new Action('assertGreaterOrEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -387,10 +389,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertLessOrEquals() */ public function assertLessOrEquals($expected, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessOrEquals', func_get_args())); + return $this->getScenario()->runStep(new Action('assertLessOrEquals', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -399,10 +401,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertIsEmpty() */ public function assertIsEmpty($actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsEmpty', func_get_args())); + return $this->getScenario()->runStep(new Action('assertIsEmpty', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -412,10 +414,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertArrayHasKey() */ public function assertArrayHasKey($key, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayHasKey', func_get_args())); + return $this->getScenario()->runStep(new Action('assertArrayHasKey', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -425,10 +427,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertArrayNotHasKey() */ public function assertArrayNotHasKey($key, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayNotHasKey', func_get_args())); + return $this->getScenario()->runStep(new Action('assertArrayNotHasKey', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -441,10 +443,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertArraySubset() */ public function assertArraySubset($subset, $array, $strict = null, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArraySubset', func_get_args())); + return $this->getScenario()->runStep(new Action('assertArraySubset', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -454,10 +456,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertCount() */ public function assertCount($expectedCount, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertCount', func_get_args())); + return $this->getScenario()->runStep(new Action('assertCount', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -467,10 +469,10 @@ trait UnitTesterActions * @see \Helper\ExtraAsserts::assertInstanceOf() */ public function assertInstanceOf($expected, $actual, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInstanceOf', func_get_args())); + return $this->getScenario()->runStep(new Action('assertInstanceOf', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -480,10 +482,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertNotInstanceOf() */ public function assertNotInstanceOf($class, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotInstanceOf', func_get_args())); + return $this->getScenario()->runStep(new Action('assertNotInstanceOf', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -493,10 +495,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::assertInternalType() */ public function assertInternalType($type, $actual, $description = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInternalType', func_get_args())); + return $this->getScenario()->runStep(new Action('assertInternalType', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -506,10 +508,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::fail() */ public function fail($message) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('fail', func_get_args())); + return $this->getScenario()->runStep(new Action('fail', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -540,10 +542,10 @@ trait UnitTesterActions * @see \Codeception\Module\Asserts::expectException() */ public function expectException($exception, $callback) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('expectException', func_get_args())); + return $this->getScenario()->runStep(new Action('expectException', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -551,10 +553,10 @@ trait UnitTesterActions * @see \Helper\ExtraAsserts::assertCanSave() */ public function assertCanSave($model) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertCanSave', func_get_args())); + return $this->getScenario()->runStep(new Action('assertCanSave', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -562,10 +564,10 @@ trait UnitTesterActions * @see \Helper\ExtraAsserts::assertCanNotSave() */ public function assertCanNotSave($model, $message = null) { - return $this->getScenario()->runStep(new \Codeception\Step\Action('assertCanNotSave', func_get_args())); + return $this->getScenario()->runStep(new Action('assertCanNotSave', func_get_args())); } - + /** * [!] Method is generated. Documentation taken from corresponding module. * @@ -573,6 +575,6 @@ trait UnitTesterActions * @see \Helper\ExtraAsserts::haveNotFinishedTest() */ public function haveNotFinishedTest() { - return $this->getScenario()->runStep(new \Codeception\Step\Action('haveNotFinishedTest', func_get_args())); + return $this->getScenario()->runStep(new Action('haveNotFinishedTest', func_get_args())); } } diff --git a/tests/unit.suite.yml b/tests/unit.suite.yml old mode 100644 new mode 100755 diff --git a/tests/unit/AbcParser/Application/PersonFactoryTest.php b/tests/unit/AbcParser/Application/PersonFactoryTest.php old mode 100644 new mode 100755 index c7357e6..d6c1d35 --- a/tests/unit/AbcParser/Application/PersonFactoryTest.php +++ b/tests/unit/AbcParser/Application/PersonFactoryTest.php @@ -2,11 +2,12 @@ namespace Tests\Unit\AbcParser\Application; use Enzyme\Axiom\Atoms\StringAtom; +use PHPUnit_Framework_TestCase; use XaiCorp\AbcParser\Application\PersonFactory; use XaiCorp\AbcParser\Domain\Atoms\EmailAtom; use XaiCorp\AbcParser\Domain\Core\Person; -class PersonFactoryTest extends \PHPUnit_Framework_TestCase +class PersonFactoryTest extends PHPUnit_Framework_TestCase { public function testCreate() diff --git a/tests/unit/AbcParser/Application/UseCases/ExtractTuneFromCollectionTest.php b/tests/unit/AbcParser/Application/UseCases/ExtractTuneFromCollectionTest.php old mode 100644 new mode 100755 index bf01d7a..dfde8fb --- a/tests/unit/AbcParser/Application/UseCases/ExtractTuneFromCollectionTest.php +++ b/tests/unit/AbcParser/Application/UseCases/ExtractTuneFromCollectionTest.php @@ -1,9 +1,10 @@