├── README.md ├── loader.php ├── src ├── FireDog │ ├── FB.php │ └── FirePHP.php ├── Solution │ ├── Massive.php │ ├── MassiveReverse.php │ └── Math.php └── Training │ ├── Data.php │ ├── ITestLogicInterface.php │ ├── ITestMassiveInterface.php │ ├── ITestMassiveReverseInterface.php │ ├── ITestMathInterface.php │ ├── ITestMinMaxInterface.php │ ├── ITestSortInterface.php │ └── ITestStringInterface.php └── test.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/README.md -------------------------------------------------------------------------------- /loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/loader.php -------------------------------------------------------------------------------- /src/FireDog/FB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/FireDog/FB.php -------------------------------------------------------------------------------- /src/FireDog/FirePHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/FireDog/FirePHP.php -------------------------------------------------------------------------------- /src/Solution/Massive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Solution/Massive.php -------------------------------------------------------------------------------- /src/Solution/MassiveReverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Solution/MassiveReverse.php -------------------------------------------------------------------------------- /src/Solution/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Solution/Math.php -------------------------------------------------------------------------------- /src/Training/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/Data.php -------------------------------------------------------------------------------- /src/Training/ITestLogicInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestLogicInterface.php -------------------------------------------------------------------------------- /src/Training/ITestMassiveInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestMassiveInterface.php -------------------------------------------------------------------------------- /src/Training/ITestMassiveReverseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestMassiveReverseInterface.php -------------------------------------------------------------------------------- /src/Training/ITestMathInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestMathInterface.php -------------------------------------------------------------------------------- /src/Training/ITestMinMaxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestMinMaxInterface.php -------------------------------------------------------------------------------- /src/Training/ITestSortInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestSortInterface.php -------------------------------------------------------------------------------- /src/Training/ITestStringInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/src/Training/ITestStringInterface.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/php-tasks-to-prepare-for-interview/HEAD/test.php --------------------------------------------------------------------------------