Application
Table of Contents
Interfaces
- ModuleInstaller
- Module installer interface.
Classes
- Cli
- CLI class.
- Config
- Load config files from /config folder from main application or modules in each environment that was set in the /public/index.php file.
- Container
- Dependency injection container.
- BaseConsole
- Base console (CLI) class.
- Constants
- Module CLI.
- Module
- Module CLI.
- Phinx
- Phinx CLI
- Storage
- Storage CLI.
- BaseController
- BasedController class.
- DefaultController
- DefaultController
- E404Controller
- Error 404 controller.
- E405Controller
- Error 405 controller.
- BaseModel
- Base model DB.
- ArrayUtil
- Array utilities class.
- Logger
- DB Logger class.
- Statement
- DB statement class.
- Db
- Database class that is working on PDO.
- FileSystem
- Works about files and folders.
- Form
- Form class.
- Input
- Input class.
- Logger
- Log class that is working on monolog.
- Profiler
- Profiler class that extends Rundiz\Profiler\Profiler.
- Url
- URL class.
- Xml
- XML class.
- ErrorHandler
- Error handler for the framework.
- I18n
- I18n or internationalisation for the framework.
- Profiler
- Profiler or benchmark the application.
- RemoveTrailingSlash
- Remove trailing slash from the URL by redirect it.
- Modules
- Modules class.
- Router
- Router class.
- Views
- Views class.
Functions
- str_contains() : bool
- Performs a case-sensitive check indicating if needle is contained in haystack.
Functions
str_contains()
Performs a case-sensitive check indicating if needle is contained in haystack.
str_contains(string $haystack, string $needle) : bool
Parameters
- $haystack : string
-
The string to search in.
- $needle : string
-
The substring to search for in the haystack.
Tags
Return values
bool —Returns true if needle is in haystack, false otherwise.